Skip to content

Commit

Permalink
docs: fix typo in constants.rs (#1275)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear authored Mar 7, 2024
1 parent 2b5b607 commit 17e4411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assembly/src/ast/parsers/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 17e4411

Please sign in to comment.