Skip to content

Commit

Permalink
Update FractionDisplay.cs (#200)
Browse files Browse the repository at this point in the history
Fix a copy/paste typo
  • Loading branch information
ReallyVirtual committed Aug 10, 2021
1 parent 23e681b commit cf8fe8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CSharpMath/Display/Displays/FractionDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class FractionDisplay<TFont, TGlyph> : IDisplay<TFont, TGlyph>
///<summary>A display representing the numerator of the fraction.
///Its position is relative to the parent and it is not treated as a sub-display.</summary>
public ListDisplay<TFont, TGlyph> Numerator { get; }
///<summary>A display representing the numerator of the fraction.
///<summary>A display representing the denominator of the fraction.
///Its position is relative to the parent and it is not treated as a sub-display.</summary>
public ListDisplay<TFont, TGlyph> Denominator { get; }

Expand Down Expand Up @@ -69,4 +69,4 @@ public void SetTextColorRecursive(Color? textColor) {

public override string ToString() => $@"\frac{{{Numerator}}}{{{Denominator}}}";
}
}
}

0 comments on commit cf8fe8c

Please sign in to comment.