about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorP1start <rewi-github@whanau.org>2015-01-20 19:25:28 +1300
committerP1start <rewi-github@whanau.org>2015-01-20 19:51:44 +1300
commited769bf87f1e0ff03cd8ccbdfd90195a8126f135 (patch)
treed5164ebb40efad06d0002f5616b5b1b251f48b4e /src/libsyntax
parent7f8c687fdfbf076ef1667f4d95633d4e0812b516 (diff)
downloadrust-ed769bf87f1e0ff03cd8ccbdfd90195a8126f135.tar.gz
rust-ed769bf87f1e0ff03cd8ccbdfd90195a8126f135.zip
Fix up some ‘help’ messages
Diffstat (limited to 'src/libsyntax')
-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 83a7504bc49..f5204478906 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");
                 }
             }
             _ => {}