aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/handlers.rs
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2020-08-28 19:55:24 +0100
committerKirill Bulatov <[email protected]>2020-08-28 19:55:24 +0100
commit3ac9732ca3bb34bfdda723d4eeed3040db7b1542 (patch)
tree9555c8310536e546bfb9e6892572b07138c61255 /crates/rust-analyzer/src/handlers.rs
parent8146700f82b75cd3cda5191108b4277a9908c744 (diff)
Fix some typos
Diffstat (limited to 'crates/rust-analyzer/src/handlers.rs')
-rw-r--r--crates/rust-analyzer/src/handlers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs
index 8568f7b05..d62dd0589 100644
--- a/crates/rust-analyzer/src/handlers.rs
+++ b/crates/rust-analyzer/src/handlers.rs
@@ -1075,7 +1075,7 @@ pub(crate) fn handle_inlay_hints(
1075 .analysis 1075 .analysis
1076 .inlay_hints(file_id, &snap.config.inlay_hints)? 1076 .inlay_hints(file_id, &snap.config.inlay_hints)?
1077 .into_iter() 1077 .into_iter()
1078 .map(|it| to_proto::inlay_int(&line_index, it)) 1078 .map(|it| to_proto::inlay_hint(&line_index, it))
1079 .collect()) 1079 .collect())
1080} 1080}
1081 1081