From 17e4411a0bd43940396dc4b30526e66d391b5198 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 8 Mar 2024 02:46:17 +0900 Subject: [PATCH] docs: fix typo in constants.rs (#1275) --- assembly/src/ast/parsers/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assembly/src/ast/parsers/constants.rs b/assembly/src/ast/parsers/constants.rs index 131aa26cbf..3303eec94b 100644 --- a/assembly/src/ast/parsers/constants.rs +++ b/assembly/src/ast/parsers/constants.rs @@ -64,7 +64,7 @@ fn build_postfix_expression( Operation::Value(_) => postfix_expression.push(operation), // if we get `(` push it on the stack Operation::LPar => stack.push(Operation::LPar), - // if we get `)` push operators from the stack to the postfix expression untill we + // if we get `)` push operators from the stack to the postfix expression until we // get `(` on stack Operation::RPar => { while stack.last() != Some(&Operation::LPar) {