]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/tests/ui/methods_fixable.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / tools / clippy / tests / ui / methods_fixable.stderr
index 70e7c3dea545bbeff7c3f78e4555fd0f2aee8822..852f48e32d678aa91a2fd32a591fa917212747d3 100644 (file)
@@ -1,4 +1,4 @@
-error: called `filter(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find(..)` instead.
+error: called `filter(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find(..)` instead
   --> $DIR/methods_fixable.rs:10:13
    |
 LL |     let _ = v.iter().filter(|&x| *x < 0).next();