diff options
| author | P1start <rewi-github@whanau.org> | 2015-01-20 19:25:28 +1300 |
|---|---|---|
| committer | P1start <rewi-github@whanau.org> | 2015-01-20 19:51:44 +1300 |
| commit | ed769bf87f1e0ff03cd8ccbdfd90195a8126f135 (patch) | |
| tree | d5164ebb40efad06d0002f5616b5b1b251f48b4e /src/libsyntax/parse | |
| parent | 7f8c687fdfbf076ef1667f4d95633d4e0812b516 (diff) | |
| download | rust-ed769bf87f1e0ff03cd8ccbdfd90195a8126f135.tar.gz rust-ed769bf87f1e0ff03cd8ccbdfd90195a8126f135.zip | |
Fix up some ‘help’ messages
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 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"); } } _ => {} |
