From 3bcb3ef8d3f4b8b7cdcf73326f36ee95004ee75c Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Wed, 1 Apr 2020 13:18:14 +0200 Subject: [PATCH] clean up E0468 explanation --- src/librustc_error_codes/error_codes/E0468.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_error_codes/error_codes/E0468.md b/src/librustc_error_codes/error_codes/E0468.md index 73e3ebb949ac0..cf8664718fa63 100644 --- a/src/librustc_error_codes/error_codes/E0468.md +++ b/src/librustc_error_codes/error_codes/E0468.md @@ -1,4 +1,4 @@ -A non-root module attempts to import macros from another crate. +A non-root module tried to import macros from another crate. Example of erroneous code: @@ -17,7 +17,7 @@ Either move the macro import to crate root or do without the foreign macros. This will work: ``` -#[macro_use(debug_assert)] +#[macro_use(debug_assert)] // ok! extern crate core; mod foo {