Skip to content

Commit

Permalink
Add missing semicolon :(
Browse files Browse the repository at this point in the history
  • Loading branch information
scrabsha committed Sep 15, 2024
1 parent 57187b4 commit e9a664b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expandable-impl/src/expansion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ where
//
// Parsing code is so fragile that a low value should be enough for us to
// either find the fixed-point or detect a syntax error.
const FIXED_POINT_ITERATIONS_FUEL: usize = 16
const FIXED_POINT_ITERATIONS_FUEL: usize = 16;

fn check_rule(
bindings: HashMap<String, BindingData<Span>>,
Expand Down

0 comments on commit e9a664b

Please sign in to comment.