From 3eb620a44e7baf399d124a4b21412c8eb61cb8ba Mon Sep 17 00:00:00 2001 From: BlazeFace Date: Sat, 26 Oct 2024 07:27:31 -0700 Subject: [PATCH] Fix typo --- src/Spectre.Console/Internal/Ratio.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);