diff --git a/crates/ide_assists/src/handlers/replace_unwrap_with_match.rs b/crates/ide_assists/src/handlers/replace_unwrap_with_match.rs index 0fec961b437..a3bfa221c29 100644 --- a/crates/ide_assists/src/handlers/replace_unwrap_with_match.rs +++ b/crates/ide_assists/src/handlers/replace_unwrap_with_match.rs @@ -17,7 +17,7 @@ use ide_db::ty_filter::TryEnum; // Assist: replace_unwrap_with_match // -// Replaces `unwrap` a `match` expression. Works for Result and Option. +// Replaces `unwrap` with a `match` expression. Works for Result and Option. // // ``` // enum Result { Ok(T), Err(E) }