]> git.lizzy.rs Git - rust.git/commitdiff
grammar
authorAndre Bogus <bogusandre@gmail.com>
Wed, 12 Aug 2015 19:17:21 +0000 (21:17 +0200)
committerAndre Bogus <bogusandre@gmail.com>
Wed, 12 Aug 2015 19:17:21 +0000 (21:17 +0200)
src/strings.rs

index aa0e8499f3e49fb2c9fbf981936b69c128d36af1..33db980c0651ca93d626e35b185718962acca837 100644 (file)
@@ -47,13 +47,13 @@ fn check_expr(&mut self, cx: &Context, e: &Expr) {
                 }
                 //TODO check for duplicates
                  span_lint(cx, STRING_ADD, e.span,
-                        "you add something to a string. \
+                        "you added something to a string. \
                         Consider using `String::push_str()` instead.")
             }
         } else if let &ExprAssign(ref target, ref  src) = &e.node {
             if is_string(cx, target) && is_add(src, target) {
                 span_lint(cx, STRING_ADD_ASSIGN, e.span,
-                    "you assign the result of adding something to this string. \
+                    "you assigned the result of adding something to this string. \
                     Consider using `String::push_str()` instead.")
             }
         }