diff options
author | Jonas Schievink <[email protected]> | 2021-03-15 00:46:59 +0000 |
---|---|---|
committer | Jonas Schievink <[email protected]> | 2021-03-15 00:46:59 +0000 |
commit | 40638b16c8c014d4d226d25f05ad19b16827cb98 (patch) | |
tree | 0018ad4d807b45744cc0cdd121433eb9e9d3fa38 /crates/ide | |
parent | 8b4cbbb87c6dc946711570096d857603c30a5d8d (diff) |
Use pub(crate)
Diffstat (limited to 'crates/ide')
-rw-r--r-- | crates/ide/src/diagnostics/unlinked_file.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ide/src/diagnostics/unlinked_file.rs b/crates/ide/src/diagnostics/unlinked_file.rs index f6dc671b9..37d32f1a6 100644 --- a/crates/ide/src/diagnostics/unlinked_file.rs +++ b/crates/ide/src/diagnostics/unlinked_file.rs | |||
@@ -19,9 +19,9 @@ use crate::Fix; | |||
19 | use super::fixes::DiagnosticWithFix; | 19 | use super::fixes::DiagnosticWithFix; |
20 | 20 | ||
21 | #[derive(Debug)] | 21 | #[derive(Debug)] |
22 | pub struct UnlinkedFile { | 22 | pub(crate) struct UnlinkedFile { |
23 | pub file_id: FileId, | 23 | pub(crate) file_id: FileId, |
24 | pub node: SyntaxNodePtr, | 24 | pub(crate) node: SyntaxNodePtr, |
25 | } | 25 | } |
26 | 26 | ||
27 | impl Diagnostic for UnlinkedFile { | 27 | impl Diagnostic for UnlinkedFile { |