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() }