]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_ast/src/util/parser.rs
Rollup merge of #106886 - dtolnay:fastinstall, r=Mark-Simulacrum
[rust.git] / compiler / rustc_ast / src / util / parser.rs
index 819f1884a06922ca5861679de032dde2b2db47a7..4f7099c7be8a6561492a22b210643768b9db4a2a 100644 (file)
@@ -304,7 +304,7 @@ pub fn order(self) -> i8 {
             | ExprPrecedence::Yeet => PREC_JUMP,
 
             // `Range` claims to have higher precedence than `Assign`, but `x .. x = x` fails to
-            // parse, instead of parsing as `(x .. x) = x`.  Giving `Range` a lower precedence
+            // parse, instead of parsing as `(x .. x) = x`. Giving `Range` a lower precedence
             // ensures that `pprust` will add parentheses in the right places to get the desired
             // parse.
             ExprPrecedence::Range => PREC_RANGE,