mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
fix math
This commit is contained in:
parent
f92a8e900d
commit
225254d7e5
1 changed files with 1 additions and 2 deletions
|
@ -197,8 +197,7 @@ where
|
|||
} else if column < min_indent {
|
||||
Err((MadeProgress, indent_problem(state.pos()), state))
|
||||
} else {
|
||||
let comments_and_newlines =
|
||||
Vec::with_capacity_in(newlines.saturating_sub(1), arena);
|
||||
let comments_and_newlines = Vec::with_capacity_in(newlines, arena);
|
||||
let spaces = eat_spaces(state, false, comments_and_newlines);
|
||||
let mut state = spaces.state;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue