Rollup merge of #22413 - steveklabnik:gh22386, r=alexcrichton

Fixes #22386
This commit is contained in:
Manish Goregaokar 2015-02-17 06:24:34 +05:30
commit a97ffa24d5

View File

@ -818,9 +818,8 @@ item : extern_crate_decl | use_decl | mod_item | fn_item | type_item
| extern_block ;
```
An _item_ is a component of a crate; some module items can be defined in crate
files, but most are defined in source files. Items are organized within a crate
by a nested set of [modules](#modules). Every crate has a single "outermost"
An _item_ is a component of a crate. Items are organized within a crate by a
nested set of [modules](#modules). Every crate has a single "outermost"
anonymous module; all further items within the crate have [paths](#paths)
within the module tree of the crate.