about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-21 09:15:54 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-21 09:15:54 -0800
commit5d82c0fabf9169e2517b6eb3f2695cb338d669b8 (patch)
treea85a701e1b96c2ed0054829ae411adf4e4a566ee /src/libsyntax/parse
parent1646707c6e86166b28be77623f260333015e790c (diff)
parented769bf87f1e0ff03cd8ccbdfd90195a8126f135 (diff)
downloadrust-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.rs2
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");
                 }
             }
             _ => {}