about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-07-27 23:04:42 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-07-27 23:04:42 -0400
commit02c1351fa346745edfb1c477ad2a5c40cfa5a0de (patch)
tree8e9de2c9b15632cc7aaaf0fa3a35403bbafac071
parentd019a49ac86322703e1daad0ebca393856185b32 (diff)
downloadrust-02c1351fa346745edfb1c477ad2a5c40cfa5a0de.tar.gz
rust-02c1351fa346745edfb1c477ad2a5c40cfa5a0de.zip
remove incorrect statement from TRPL: crates and modules
-rw-r--r--src/doc/trpl/crates-and-modules.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/doc/trpl/crates-and-modules.md b/src/doc/trpl/crates-and-modules.md
index 63fdef0760f..2b346c15bb5 100644
--- a/src/doc/trpl/crates-and-modules.md
+++ b/src/doc/trpl/crates-and-modules.md
@@ -517,9 +517,6 @@ of `foo` relative to where we are. If that’s prefixed with `::`, as in
 `::foo::bar()`, it refers to a different `foo`, an absolute path from your
 crate root.
 
-Also, note that we `pub use`d before we declared our `mod`s. Rust requires that
-`use` declarations go first.
-
 This will build and run:
 
 ```bash