Skip to content

Commit 116fb63

Browse files
authored
Apply suggestions from code review
1 parent 8990356 commit 116fb63

File tree

1 file changed

+1
-1
lines changed
  • third_party/move/move-compiler/src/parser

1 file changed

+1
-1
lines changed

third_party/move/move-compiler/src/parser/syntax.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1402,7 +1402,7 @@ fn parse_control_exp(context: &mut Context) -> Result<(Exp, bool), Box<Diagnosti
14021402
if !matches!(context.tokens.peek(), Tok::While | Tok::Loop) {
14031403
return Err(unexpected_token_error(
14041404
context.tokens,
1405-
"one of: 'while' or 'loop'",
1405+
"one of: `while` or `loop`",
14061406
));
14071407
}
14081408
};

0 commit comments

Comments
 (0)