diff --git a/src/parse/parse.rs b/src/parse/parse.rs index 3003bf4..cd7f1a8 100644 --- a/src/parse/parse.rs +++ b/src/parse/parse.rs @@ -33,7 +33,7 @@ pub fn parse_var_declaration(mut tokens: Lexer) -> Option { } pub fn parse_fun_call(mut tokens: Lexer) -> Option { - // Is it an Ident? -> Is it a LeftParen? -> Is it a value (I should really make a function to parse that) or is it a RightParen? - // ↓ ↓ - // If it's a value, push that to `params`. Otherwise, params will just be a `Vec::new()`. + // Is it an Ident? → Is it a LeftParen? → Is it a value (I should really make a function to parse that) or is it a RightParen? + // ↓ ↓ + // If it's a value, push that to `params`. Otherwise, params will just be a `Vec::new()`. }