From 3916b20b591e4b9cb76e80ef928e697239a904e5 Mon Sep 17 00:00:00 2001 From: Erin Date: Mon, 18 Apr 2022 22:09:56 +0200 Subject: [PATCH] clearer comment --- ablescript/src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ablescript/src/parser.rs b/ablescript/src/parser.rs index 57cdab23..5934e0ab 100644 --- a/ablescript/src/parser.rs +++ b/ablescript/src/parser.rs @@ -605,7 +605,7 @@ impl<'source> Parser<'source> { } } -/// Parse AbleScript into AST +/// Parse AbleScript code into AST pub fn parse(source: &str) -> Result { Parser::new(source).parse() }