diff --git a/src/Spectre.Console/Internal/Ratio.cs b/src/Spectre.Console/Internal/Ratio.cs index 69f752c..4ef5504 100644 --- a/src/Spectre.Console/Internal/Ratio.cs +++ b/src/Spectre.Console/Internal/Ratio.cs @@ -11,7 +11,7 @@ internal static class Ratio { 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);