From 80eda7257583543ba5e647c7a3cd558afe741df0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Sat, 6 Sep 2025 23:21:37 +0200 Subject: [PATCH] Fix typo --- src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.rs b/src/macros.rs index 1b7adda..6f75177 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -34,7 +34,7 @@ macro_rules! non_empty_string { #[cfg(test)] mod tests { - // We explicitely DO NOT do `use crate::NonEmptyString` or anything of the sorts to ensure the macro has proper hygiene. + // We explicitly DO NOT do `use crate::NonEmptyString` or anything of the sorts to ensure the macro has proper hygiene. // Otherwise tests might pass, but if a user does `non_empty_string::non_empty_string!("A")`, they might get compilation // errors that `NonEmptyString` is not in scope.