We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0863e2c + 3bcb3ef commit 37b2e3fCopy full SHA for 37b2e3f
src/librustc_error_codes/error_codes/E0468.md
@@ -1,4 +1,4 @@
1
-A non-root module attempts to import macros from another crate.
+A non-root module tried to import macros from another crate.
2
3
Example of erroneous code:
4
@@ -17,7 +17,7 @@ Either move the macro import to crate root or do without the foreign macros.
17
This will work:
18
19
```
20
-#[macro_use(debug_assert)]
+#[macro_use(debug_assert)] // ok!
21
extern crate core;
22
23
mod foo {
0 commit comments