diff options
author | uHOOCCOOHu <[email protected]> | 2019-09-05 05:03:32 +0100 |
---|---|---|
committer | uHOOCCOOHu <[email protected]> | 2019-09-05 05:03:32 +0100 |
commit | 3ff5d7e73c65393672886de09738adf49cdd4984 (patch) | |
tree | bf3174e114b3147b50b3de5ab716490f3a14d67f /crates | |
parent | 0d23286caf35a7cd8aed6e20fab3a2a3ed91ae8f (diff) |
Fix typo
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_hir/src/nameres/tests/macros.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_hir/src/nameres/tests/macros.rs b/crates/ra_hir/src/nameres/tests/macros.rs index ff762ee30..ebfefe273 100644 --- a/crates/ra_hir/src/nameres/tests/macros.rs +++ b/crates/ra_hir/src/nameres/tests/macros.rs | |||
@@ -150,13 +150,13 @@ fn macro_rules_from_other_crates_are_visible_with_macro_use() { | |||
150 | structs!(Foo); | 150 | structs!(Foo); |
151 | structs_priv!(Bar); | 151 | structs_priv!(Bar); |
152 | structs_not_exported!(MacroNotResolved1); | 152 | structs_not_exported!(MacroNotResolved1); |
153 | crates::structs!(MacroNotResolved2); | 153 | crate::structs!(MacroNotResolved2); |
154 | 154 | ||
155 | mod bar; | 155 | mod bar; |
156 | 156 | ||
157 | //- /bar.rs | 157 | //- /bar.rs |
158 | structs!(Baz); | 158 | structs!(Baz); |
159 | crates::structs!(MacroNotResolved3); | 159 | crate::structs!(MacroNotResolved3); |
160 | 160 | ||
161 | //- /lib.rs | 161 | //- /lib.rs |
162 | #[macro_export] | 162 | #[macro_export] |