summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-02-17 06:24:34 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-02-17 06:24:34 +0530
commita97ffa24d5abe791dff23b59aa97776acd29435a (patch)
tree7d310f32b79b12eb9be66832c2ca6d9f03359991
parentb491b16b86c1b372fe4558bce8517b05d509a6a9 (diff)
parent5ebf4c4bd5f7588f76c98b11bdcffc01bb266aa0 (diff)
downloadrust-a97ffa24d5abe791dff23b59aa97776acd29435a.tar.gz
rust-a97ffa24d5abe791dff23b59aa97776acd29435a.zip
Rollup merge of #22413 - steveklabnik:gh22386, r=alexcrichton
 Fixes #22386
-rw-r--r--src/doc/reference.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index d46a1443c2f..11b2afc1c88 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -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.