Unnamed repository; edit this file 'description' to name the repository.
| -rw-r--r-- | crates/ide_assists/src/handlers/unwrap_result_return_type.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_assists/src/handlers/unwrap_result_return_type.rs b/crates/ide_assists/src/handlers/unwrap_result_return_type.rs index f1b5045e96..6d813aa672 100644 --- a/crates/ide_assists/src/handlers/unwrap_result_return_type.rs +++ b/crates/ide_assists/src/handlers/unwrap_result_return_type.rs @@ -8,7 +8,7 @@ use crate::{AssistContext, AssistId, AssistKind, Assists}; // Assist: unwrap_result_return_type // -// Wrap the function's return type into Result. +// Unwrap the function's return type. // // ``` // # //- minicore: result |