Skip to content

Commit

Permalink
Auto merge of #7815 - nhamovitz:patch-1, r=giraffate
Browse files Browse the repository at this point in the history
Fix typo in example for `match_result_ok`

changelog: Fix typo in example for ``[`match_result_ok`]``
  • Loading branch information
bors committed Oct 13, 2021
2 parents b9b11a9 + 09aa4ad commit 4996e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/match_result_ok.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ declare_clippy_lint! {
/// }
///
/// if let Ok(value) = iter.next() {
/// vec.push_value)
/// vec.push(value)
/// }
/// ```
pub MATCH_RESULT_OK,
Expand Down

0 comments on commit 4996e17

Please sign in to comment.