From 5adf4396c75e0ca9748ebccd65facae67c4f1aad Mon Sep 17 00:00:00 2001 From: Goren Barak Date: Sat, 25 Nov 2023 18:53:15 -0500 Subject: [PATCH] Made the arrows cooler. --- src/parse/parse.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()`. }