diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-01-21 09:15:54 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-21 09:15:54 -0800 |
| commit | 5d82c0fabf9169e2517b6eb3f2695cb338d669b8 (patch) | |
| tree | a85a701e1b96c2ed0054829ae411adf4e4a566ee /src/libsyntax/parse | |
| parent | 1646707c6e86166b28be77623f260333015e790c (diff) | |
| parent | ed769bf87f1e0ff03cd8ccbdfd90195a8126f135 (diff) | |
| download | rust-5d82c0fabf9169e2517b6eb3f2695cb338d669b8.tar.gz rust-5d82c0fabf9169e2517b6eb3f2695cb338d669b8.zip | |
rollup merge of #21411: P1start/help-tweaks
Conflicts: src/librustc_typeck/check/closure.rs
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 1a296d39360..865a7110696 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -2921,7 +2921,7 @@ impl<'a> Parser<'a> { "Chained comparison operators require parentheses"); if op == BiLt && outer_op == BiGt { self.span_help(op_span, - "Use ::< instead of < if you meant to specify type arguments."); + "use ::< instead of < if you meant to specify type arguments"); } } _ => {} |
