From c2c74fe1f46949920fe2bce3bfab3d85ceb292e9 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Fri, 14 Nov 2025 16:28:54 -0800 Subject: [PATCH] Clarify comment --- src/words.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/words.rs b/src/words.rs index f108a6202..af2f11cc5 100644 --- a/src/words.rs +++ b/src/words.rs @@ -51,7 +51,7 @@ pub(crate) fn split_words_and_numbers(s: &str) -> Vec<&str> { // Word character, add to the current word if it's // not a number. if c.is_ascii_digit() == start_c.is_ascii_digit() { - // Just carry on in this word. + // Just carry on in this word/number. } else { // Finish previous word, start a new one. words.push(&s[start..idx]);