From cd50b53be5fefcf742468b0fab4c4ae90fc623d8 Mon Sep 17 00:00:00 2001 From: Myrddin Dundragon Date: Wed, 23 Apr 2025 17:30:07 -0400 Subject: [PATCH] Fixing a Unicode issue Apparently Gitea was having an issue with the Unicode encoding used for the apostrophe. I have edited it in Gitea to fix it. Signed-off-by: Myrddin Dundragon --- src/token.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/token.rs b/src/token.rs index 0a28ff5..ec45304 100644 --- a/src/token.rs +++ b/src/token.rs @@ -190,7 +190,7 @@ impl TokenStream /// /// # Safety /// Uses `unsafe` to split borrows for individual mutable access - /// to components of the token without violating Rust’s aliasing rules. + /// to components of the token without violating Rust's aliasing rules. pub fn get_mut(&mut self, index: usize) -> Option> { if index < self.lexemes.len()