1
Fork 0

Rollup merge of #30405 - durka:patch-12, r=steveklabnik

Fixes #30217.
This commit is contained in:
Steve Klabnik 2015-12-29 15:55:09 -05:00
commit ccaa7e5146

View file

@ -611,8 +611,7 @@ to define a single macro that works both inside and outside our library. The
function name will expand to either `::increment` or `::mylib::increment`.
To keep this system simple and correct, `#[macro_use] extern crate ...` may
only appear at the root of your crate, not inside `mod`. This ensures that
`$crate` is a single identifier.
only appear at the root of your crate, not inside `mod`.
# The deep end