]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/match_result_ok.rs
Rollup merge of #89789 - jkugelman:must-use-thread-builder, r=joshtriplett
[rust.git] / src / tools / clippy / clippy_lints / src / match_result_ok.rs
index 3db1f0421ea70efb35940ed2c9ab96fbcbc935ad..ecf6ad316a46124a121e0be7de6264ace3ed1098 100644 (file)
@@ -35,7 +35,7 @@
     /// }
     ///
     /// if let Ok(value) = iter.next() {
-    ///        vec.push_value)
+    ///        vec.push(value)
     /// }
     /// ```
     pub MATCH_RESULT_OK,