Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Nov 10, 2024
1 parent 35ff4d4 commit 6658c45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minijinja/src/vm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -626,8 +626,8 @@ impl<'env> Vm<'env> {
"loop() takes one argument"
));
}
// leave the one argument on the stack for the recursion
// this internall calls continue.
// leave the one argument on the stack for the recursion. The
// recurse_loop! macro itself will perform a jump and not return here.
recurse_loop!(true);
} else if let Some(func) = state.lookup(name) {
ctx_ok!(func.call(state, args))
Expand Down

0 comments on commit 6658c45

Please sign in to comment.