]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cmp_null.stderr
Fix `unnecessary_cast` suggestion when taking a reference
[rust.git] / tests / ui / cmp_null.stderr
index b563a2ebec2d2fd1b55f7f436799f6efe6920864..a1f4c70fb2786ede59a99564e629a4715ab3fca7 100644 (file)
@@ -1,4 +1,4 @@
-error: Comparing with null is better expressed by the `.is_null()` method
+error: comparing with null is better expressed by the `.is_null()` method
   --> $DIR/cmp_null.rs:9:8
    |
 LL |     if p == ptr::null() {
@@ -6,7 +6,7 @@ LL |     if p == ptr::null() {
    |
    = note: `-D clippy::cmp-null` implied by `-D warnings`
 
-error: Comparing with null is better expressed by the `.is_null()` method
+error: comparing with null is better expressed by the `.is_null()` method
   --> $DIR/cmp_null.rs:14:8
    |
 LL |     if m == ptr::null_mut() {