From 132ba77a476bcc8bfe4e90fbab7dcd71a59f29fb Mon Sep 17 00:00:00 2001 From: Folkert Date: Thu, 25 Mar 2021 21:41:19 +0100 Subject: [PATCH] fix comment mistaken for doc test --- compiler/parse/src/expr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }