diff options
| author | Morgan Thomas <corp@m0rg.dev> | 2022-03-11 19:10:43 -0800 |
|---|---|---|
| committer | Morgan Thomas <corp@m0rg.dev> | 2022-03-11 19:10:43 -0800 |
| commit | 6a1c1511595da866f6609e14c449136fa377fa33 (patch) | |
| tree | a917781684a44bd88367228f75438c457b81d4ae | |
| parent | 2a22cf8efca9cdf70dc849f974f9ee858171853e (diff) | |
| download | rust-6a1c1511595da866f6609e14c449136fa377fa33.tar.gz rust-6a1c1511595da866f6609e14c449136fa377fa33.zip | |
visibility tweak for CI
| -rw-r--r-- | crates/ide_completion/src/render/compound.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ide_completion/src/render/compound.rs b/crates/ide_completion/src/render/compound.rs index 586bb92a8ec..c1047e9b624 100644 --- a/crates/ide_completion/src/render/compound.rs +++ b/crates/ide_completion/src/render/compound.rs @@ -9,8 +9,8 @@ use itertools::Itertools; /// auto-completion (`literal`, using `field: ()`) and display in the /// completions menu (`detail`, using `field: type`). pub(crate) struct RenderedCompound { - pub literal: String, - pub detail: String, + pub(crate) literal: String, + pub(crate) detail: String, } /// Render a record type (or sub-type) to a `RenderedCompound`. Use `None` for |
