File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3826,7 +3826,7 @@ declare_clippy_lint! {
3826
3826
declare_clippy_lint ! {
3827
3827
/// ### What it does
3828
3828
/// Checks for usage of `.filter(Option::is_some)` that may be replaced with a `.flatten()` call.
3829
- /// This lint will require additional changes to the follow-up calls as it appects the type.
3829
+ /// This lint will require additional changes to the follow-up calls as it affects the type.
3830
3830
///
3831
3831
/// ### Why is this bad?
3832
3832
/// This pattern is often followed by manual unwrapping of the `Option`. The simplification
@@ -3852,7 +3852,7 @@ declare_clippy_lint! {
3852
3852
declare_clippy_lint ! {
3853
3853
/// ### What it does
3854
3854
/// Checks for usage of `.filter(Result::is_ok)` that may be replaced with a `.flatten()` call.
3855
- /// This lint will require additional changes to the follow-up calls as it appects the type.
3855
+ /// This lint will require additional changes to the follow-up calls as it affects the type.
3856
3856
///
3857
3857
/// ### Why is this bad?
3858
3858
/// This pattern is often followed by manual unwrapping of `Result`. The simplification
You can’t perform that action at this time.
0 commit comments