diff options
| author | r00ster91 <r00ster91@protonmail.com> | 2021-10-17 12:04:01 +0200 |
|---|---|---|
| committer | r00ster91 <r00ster91@protonmail.com> | 2021-10-17 12:04:01 +0200 |
| commit | 3c1d55422a695204b70cbd23da582e3ab770a53c (patch) | |
| tree | 117e18317340c4f10fb1c14a231cac30542531b1 /compiler/rustc_ast/src/util/parser.rs | |
| parent | 7fbd4ce2768744b3bd2ddf8453b73f4f18dbe5bc (diff) | |
| download | rust-3c1d55422a695204b70cbd23da582e3ab770a53c.tar.gz rust-3c1d55422a695204b70cbd23da582e3ab770a53c.zip | |
Some "parenthesis" and "parentheses" fixes
Diffstat (limited to 'compiler/rustc_ast/src/util/parser.rs')
| -rw-r--r-- | compiler/rustc_ast/src/util/parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_ast/src/util/parser.rs b/compiler/rustc_ast/src/util/parser.rs index 078dd4bd6e6..500c97e65ef 100644 --- a/compiler/rustc_ast/src/util/parser.rs +++ b/compiler/rustc_ast/src/util/parser.rs @@ -357,13 +357,13 @@ impl ExprPrecedence { } } -/// In `let p = e`, operators with precedence `<=` this one requires parenthesis in `e`. +/// In `let p = e`, operators with precedence `<=` this one requires parentheses in `e`. pub fn prec_let_scrutinee_needs_par() -> usize { AssocOp::LAnd.precedence() } /// Suppose we have `let _ = e` and the `order` of `e`. -/// Is the `order` such that `e` in `let _ = e` needs parenthesis when it is on the RHS? +/// Is the `order` such that `e` in `let _ = e` needs parentheses when it is on the RHS? /// /// Conversely, suppose that we have `(let _ = a) OP b` and `order` is that of `OP`. /// Can we print this as `let _ = a OP b`? |
