Corrected minor typo on line 20

This commit is contained in:
mixio 2021-05-13 18:29:48 +02:00 committed by GitHub
parent 312f1fe20a
commit 0cb5443455
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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<T, E> { Ok(T), Err(E) }