about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-05-31 15:34:53 +0000
committerbors <bors@rust-lang.org>2024-05-31 15:34:53 +0000
commitb738617be08644eb20bbeba4bfcf45f79eda2a64 (patch)
tree7f0854f09bcb8cc487a19eba3b2329fa553f5ee9 /src
parentc1b051602ce2f6844fd703cad0146ed5ea8185e6 (diff)
parentfa3835c4196f83a644c14baf8d410a885b1abedc (diff)
downloadrust-b738617be08644eb20bbeba4bfcf45f79eda2a64.tar.gz
rust-b738617be08644eb20bbeba4bfcf45f79eda2a64.zip
Auto merge of #17319 - LukeFranceschini:patch-1, r=lnicola
minor: Missing word typo
Diffstat (limited to 'src')
-rw-r--r--src/tools/rust-analyzer/crates/ide/src/goto_declaration.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/ide/src/goto_declaration.rs b/src/tools/rust-analyzer/crates/ide/src/goto_declaration.rs
index fab62e95d19..c19f19803f1 100644
--- a/src/tools/rust-analyzer/crates/ide/src/goto_declaration.rs
+++ b/src/tools/rust-analyzer/crates/ide/src/goto_declaration.rs
@@ -16,7 +16,7 @@ use crate::{
 //
 // This is the same as `Go to Definition` with the following exceptions:
 // - outline modules will navigate to the `mod name;` item declaration
-// - trait assoc items will navigate to the assoc item of the trait declaration opposed to the trait impl
+// - trait assoc items will navigate to the assoc item of the trait declaration as opposed to the trait impl
 // - fields in patterns will navigate to the field declaration of the struct, union or variant
 pub(crate) fn goto_declaration(
     db: &RootDatabase,