From 9735d8c5842c4f6a30afcc7d9a77d35287339e41 Mon Sep 17 00:00:00 2001 From: Tonttu <15074459+TheTonttu@users.noreply.github.com> Date: Sun, 16 Mar 2025 07:43:41 +0200 Subject: [PATCH] Consistent kilobyte unit in comments --- Terminal.Gui/Text/TextFormatter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.Gui/Text/TextFormatter.cs b/Terminal.Gui/Text/TextFormatter.cs index ed49590e1..2478ddc3b 100644 --- a/Terminal.Gui/Text/TextFormatter.cs +++ b/Terminal.Gui/Text/TextFormatter.cs @@ -2444,7 +2444,7 @@ public class TextFormatter return text; } - const int maxStackallocCharBufferSize = 512; // ~1 kiB + const int maxStackallocCharBufferSize = 512; // ~1 kB char[]? rentedBufferArray = null; try {