summary refs log tree commit diff
path: root/src/tools/rust-analyzer/crates/hir-def
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2025-06-10 12:17:15 +0100
committerWilfred Hughes <me@wilfred.me.uk>2025-06-10 13:22:03 +0100
commitbb4a1ec431c699a4cd59cd408951e664dd485437 (patch)
treef767ec828615fad4d11823d6bcd18f96234d0b34 /src/tools/rust-analyzer/crates/hir-def
parente3ec14385f62ea80f40e7b131ca2ccb58a1cafcf (diff)
downloadrust-bb4a1ec431c699a4cd59cd408951e664dd485437.tar.gz
rust-bb4a1ec431c699a4cd59cd408951e664dd485437.zip
[minor] Fix typos
Diffstat (limited to 'src/tools/rust-analyzer/crates/hir-def')
-rw-r--r--src/tools/rust-analyzer/crates/hir-def/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/hir-def/src/lib.rs b/src/tools/rust-analyzer/crates/hir-def/src/lib.rs
index b41ff026bca..1e8859a9cc9 100644
--- a/src/tools/rust-analyzer/crates/hir-def/src/lib.rs
+++ b/src/tools/rust-analyzer/crates/hir-def/src/lib.rs
@@ -1245,7 +1245,7 @@ pub struct SyntheticSyntax;
 // Crate authors can opt their type out of completions in some cases.
 // This is done with the `#[rust_analyzer::completions(...)]` attribute.
 //
-// All completeable things support `#[rust_analyzer::completions(ignore_flyimport)]`,
+// All completable things support `#[rust_analyzer::completions(ignore_flyimport)]`,
 // which causes the thing to get excluded from flyimport completion. It will still
 // be completed when in scope. This is analogous to the setting `rust-analyzer.completion.autoimport.exclude`
 // with `"type": "always"`.