We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c49d93 commit a7c6f0bCopy full SHA for a7c6f0b
clippy_lints/src/methods/mod.rs
@@ -313,7 +313,7 @@ declare_clippy_lint! {
313
///
314
/// let correct: Vec<String> = ws.iter()
315
/// .filter_map(|s| if s.contains("izzle"){
316
-/// Some(s)
+/// Some(s)
317
/// } else {
318
/// None
319
/// })
@@ -322,7 +322,7 @@ declare_clippy_lint! {
322
323
/// let more_correct: Vec<String> = ws.iter()
324
325
-/// Some(format!("{}{}", s, s))
+/// Some(format!("{}{}", s, s))
326
327
328
0 commit comments