diff options
| author | hecatia-elegua <108802164+hecatia-elegua@users.noreply.github.com> | 2023-03-29 14:34:06 +0200 |
|---|---|---|
| committer | hecatia-elegua <108802164+hecatia-elegua@users.noreply.github.com> | 2023-03-29 14:34:06 +0200 |
| commit | 53afac72d2ae052d6117fb0ba8b29458b4cafa74 (patch) | |
| tree | 20c2949be0641cf55444f55caa3c9cd91f72adc0 | |
| parent | c351f6bf43a1f8b07ef17c0cf993c2649bb53686 (diff) | |
| download | rust-53afac72d2ae052d6117fb0ba8b29458b4cafa74.tar.gz rust-53afac72d2ae052d6117fb0ba8b29458b4cafa74.zip | |
Fix2
| -rw-r--r-- | crates/ide-completion/src/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide-completion/src/context.rs b/crates/ide-completion/src/context.rs index 7ad0e10062b..fbc6f11060a 100644 --- a/crates/ide-completion/src/context.rs +++ b/crates/ide-completion/src/context.rs @@ -547,7 +547,7 @@ impl<'a> CompletionContext<'a> { self.krate != defining_crate && attrs.has_doc_hidden() } - pub fn doc_aliases(&self, scope_def: ScopeDef) -> Vec<syntax::SmolStr> { + fn doc_aliases(&self, scope_def: ScopeDef) -> Vec<syntax::SmolStr> { if let Some(attrs) = scope_def.attrs(self.db) { attrs.doc_aliases() } else { |
