From e209cfb3c2453d66dbffeb14d57203fb42d111b9 Mon Sep 17 00:00:00 2001 From: Christopher Akiki Date: Tue, 4 Nov 2025 13:35:55 +0100 Subject: [PATCH] [MINOR:TYPO] Update mod.rs Minor typographical nit: no space before exclamation marks in English. --- tokenizers/src/models/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokenizers/src/models/mod.rs b/tokenizers/src/models/mod.rs index 932bc598d..6f5fafca9 100644 --- a/tokenizers/src/models/mod.rs +++ b/tokenizers/src/models/mod.rs @@ -51,8 +51,8 @@ impl Serialize for OrderedVocabIter<'_> { }; if !holes.is_empty() { - warn!("The OrderedVocab you are attempting to save contains holes for indices {holes:?}, your vocabulary could be corrupted !"); - println!("The OrderedVocab you are attempting to save contains holes for indices {holes:?}, your vocabulary could be corrupted !"); + warn!("The OrderedVocab you are attempting to save contains holes for indices {holes:?}, your vocabulary could be corrupted!"); + println!("The OrderedVocab you are attempting to save contains holes for indices {holes:?}, your vocabulary could be corrupted!"); } result }