diff --git a/compiler/parse/src/expr.rs b/compiler/parse/src/expr.rs index 5aff015a3a..7bd48bc7cf 100644 --- a/compiler/parse/src/expr.rs +++ b/compiler/parse/src/expr.rs @@ -62,7 +62,7 @@ pub struct ExprParseOptions { /// Check for the `->` token, and raise an error if found /// This is usually true, but false in if-guards /// - /// Just foo if foo == 2 -> ... + /// > Just foo if foo == 2 -> ... check_for_arrow: bool, }