From ae6ad84b5ca8f6301c852715e340ddcccf58839a Mon Sep 17 00:00:00 2001 From: Myrddin Dundragon Date: Tue, 21 Oct 2025 11:44:06 -0400 Subject: [PATCH] Fixed a unicode error. I'm not sure how I got a funky unicode character in there, but it was just an apostrophe in the comment. No big deal, but this fixes it so that there is no warning message on Gitea. --- src/ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast.rs b/src/ast.rs index 9337e96..95cf607 100644 --- a/src/ast.rs +++ b/src/ast.rs @@ -45,7 +45,7 @@ pub struct OptimizedAst { /// Node data in a linear layout (DFS or BFS order). pub nodes: Vec>, - /// Each node’s parent, if any. + /// Each node's parent, if any. pub parents: Vec>, /// The traversal order the nodes are stored in. pub order: TraversalOrder