]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/neg_multiply.stderr
Merge commit '09bd400243ed6f7059fedc0c1623aae3792521d6' into clippyup
[rust.git] / src / tools / clippy / tests / ui / neg_multiply.stderr
index f08bbd6a12c597e4b0912db1a23cbe0bd8bf9bd4..ad677f6d6fb9bf46c897fb122dc798883cb21ac4 100644 (file)
@@ -1,4 +1,4 @@
-error: Negation by multiplying with `-1`
+error: negation by multiplying with `-1`
   --> $DIR/neg_multiply.rs:27:5
    |
 LL |     x * -1;
@@ -6,7 +6,7 @@ LL |     x * -1;
    |
    = note: `-D clippy::neg-multiply` implied by `-D warnings`
 
-error: Negation by multiplying with `-1`
+error: negation by multiplying with `-1`
   --> $DIR/neg_multiply.rs:29:5
    |
 LL |     -1 * x;