Auto merge of #7815 - nhamovitz:patch-1, r=giraffate

Fix typo in example for `match_result_ok`

changelog: Fix typo in example for ``[`match_result_ok`]``
This commit is contained in:
bors 2021-10-13 23:44:42 +00:00
commit 4996e17b14

View file

@ -35,7 +35,7 @@ declare_clippy_lint! {
/// }
///
/// if let Ok(value) = iter.next() {
/// vec.push_value)
/// vec.push(value)
/// }
/// ```
pub MATCH_RESULT_OK,