Skip to content

Commit 7dad855

Browse files
authored
Fix a method reference
1 parent e1b9d85 commit 7dad855

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CSharpMath/Display/Typesetter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ private InnerDisplay<TFont, TGlyph> MakeInner(Inner inner, Range range) {
702702

703703
var leftGlyph =
704704
inner.LeftBoundary is Boundary { Nucleus: var left } && left?.Length > 0
705-
? _FindGlyphForBoundary(left, glyphHeight)
705+
? FindGlyphForBoundary(left, glyphHeight)
706706
: null;
707707

708708
var rightGlyph =

0 commit comments

Comments
 (0)