Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
BlazeFace committed Oct 26, 2024
1 parent bc88da8 commit 3eb620a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Spectre.Console/Internal/Ratio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static List<int> Resolve(int total, IEnumerable<IRatioResolvable> edges)
{
var (div, mod) = ((int)(x / y), x % y);

// If remainder is withing .0001 of 1 then we round up
// If remainder is within .0001 of 1 then we round up
if (!(mod > 0.9999))
{
return (div, mod);
Expand Down

0 comments on commit 3eb620a

Please sign in to comment.