diff --git a/crates/ra_syntax/src/grammar/type_params.rs b/crates/ra_syntax/src/grammar/type_params.rs index fe9dba2ae45..f33ec10f538 100644 --- a/crates/ra_syntax/src/grammar/type_params.rs +++ b/crates/ra_syntax/src/grammar/type_params.rs @@ -118,7 +118,7 @@ pub(super) fn opt_where_clause(p: &mut Parser) { } if !comma { - p.error("expected comma") + p.error("expected comma"); } } } @@ -143,7 +143,6 @@ fn where_predicate(p: &mut Parser) { } IMPL_KW => { p.error("expected lifetime or type"); - return; } _ => { types::type_(p);