mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
minor formatting fixes
This commit is contained in:
parent
9da9c08015
commit
21e370f41f
3 changed files with 10 additions and 11 deletions
|
@ -609,15 +609,13 @@ fn requires_rigids<'a>(
|
|||
#[inline(always)]
|
||||
fn requires_typed_ident<'a>(
|
||||
) -> impl Parser<'a, Collection<'a, Loc<Spaced<'a, TypedIdent<'a>>>>, ERequires<'a>> {
|
||||
reset_min_indent(
|
||||
collection_trailing_sep_e(
|
||||
byte(b'{', ERequires::ListStart),
|
||||
specialize_err(ERequires::TypedIdent, loc(typed_ident())),
|
||||
byte(b',', ERequires::ListEnd),
|
||||
byte(b'}', ERequires::ListEnd),
|
||||
Spaced::SpaceBefore,
|
||||
),
|
||||
)
|
||||
reset_min_indent(collection_trailing_sep_e(
|
||||
byte(b'{', ERequires::ListStart),
|
||||
specialize_err(ERequires::TypedIdent, loc(typed_ident())),
|
||||
byte(b',', ERequires::ListEnd),
|
||||
byte(b'}', ERequires::ListEnd),
|
||||
Spaced::SpaceBefore,
|
||||
))
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue