Skip to content

Commit 9b0aa8c

Browse files
committed
Fix rustfmt formatting
1 parent c5831b3 commit 9b0aa8c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/engine/src/vm/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,8 @@ impl Stack {
315315
let mut groups: Vec<(String, usize, Option<usize>)> = Vec::new();
316316
for (val, idx) in &entries {
317317
if let Some(last) = groups.last_mut()
318-
&& last.0 == *val && last.2.is_none()
318+
&& last.0 == *val
319+
&& last.2.is_none()
319320
{
320321
last.1 += 1;
321322
continue;

0 commit comments

Comments
 (0)