From 62ec34072fd09ce0293d8467b40954da2475f3ee Mon Sep 17 00:00:00 2001 From: Jacob Sandlund Date: Sun, 23 Nov 2025 22:56:00 -0500 Subject: [PATCH] fix typo --- src/build/uucode_config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/uucode_config.zig b/src/build/uucode_config.zig index 0843732b1..62339c375 100644 --- a/src/build/uucode_config.zig +++ b/src/build/uucode_config.zig @@ -23,7 +23,7 @@ fn computeWidth( // returning the width of a code point in a grapheme cluster but with the // exception to treat emoji modifiers as width 2 so they can be displayed // in isolation. PRs immediately to follow will take advantage of the new - // uucode `wcwidt_standalone` vs `wcwidth_zero_in_grapheme` split. + // uucode `wcwidth_standalone` vs `wcwidth_zero_in_grapheme` split. if (data.wcwidth_zero_in_grapheme and !data.is_emoji_modifier) { data.width = 0; } else {