]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/find_map.stderr
Merge commit '2ca58e7dda4a9eb142599638c59dc04d15961175' into clippyup
[rust.git] / src / tools / clippy / tests / ui / find_map.stderr
index 92f40fe6f1fb23b8a6e2b6681019c573ef5c2e2a..f279850fef8af91a0c520197efb7571f4e22b5e6 100644 (file)
@@ -8,7 +8,7 @@ LL |     let _: Option<i32> = a.iter().find(|s| s.parse::<i32>().is_ok()).map(|s
    = help: this is more succinctly expressed by calling `.find_map(..)` instead
 
 error: called `find(p).map(q)` on an `Iterator`
-  --> $DIR/find_map.rs:22:29
+  --> $DIR/find_map.rs:23:29
    |
 LL |       let _: Option<Flavor> = desserts_of_the_week
    |  _____________________________^