Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gfx committed Aug 9, 2024
1 parent b7b673f commit ee98ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ fn type_expr(i: Span) -> IResult<Span, TypeDecl> {
let (i, td) = alt((type_primitive, type_object))(i)?;

let Ok((i, _)) = space_delimited(char::<Span, Error>('|'))(i) else {
return Ok((i, td))
return Ok((i, td));
};

let (i, _rhs) = type_expr(i)?;
Expand Down

0 comments on commit ee98ac7

Please sign in to comment.