Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/handlers/toggle_async_sugar.rs')
-rw-r--r--crates/ide-assists/src/handlers/toggle_async_sugar.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide-assists/src/handlers/toggle_async_sugar.rs b/crates/ide-assists/src/handlers/toggle_async_sugar.rs
index 9ab36bf775..8f937a0412 100644
--- a/crates/ide-assists/src/handlers/toggle_async_sugar.rs
+++ b/crates/ide-assists/src/handlers/toggle_async_sugar.rs
@@ -127,7 +127,7 @@ pub(crate) fn desugar_async_into_impl_future(
let rparen = function.param_list()?.r_paren_token()?;
let return_type = match function.ret_type() {
- // unable to get a `ty` makes the action unapplicable
+ // unable to get a `ty` makes the action inapplicable
Some(ret_type) => Some(ret_type.ty()?),
// No type means `-> ()`
None => None,