]> git.lizzy.rs Git - rust.git/commitdiff
remove incorrect statement from TRPL: crates and modules
authorSteve Klabnik <steve@steveklabnik.com>
Tue, 28 Jul 2015 03:04:42 +0000 (23:04 -0400)
committerSteve Klabnik <steve@steveklabnik.com>
Tue, 28 Jul 2015 03:04:42 +0000 (23:04 -0400)
src/doc/trpl/crates-and-modules.md

index 63fdef0760febf66cc5ef05a79341136b67ac3d1..2b346c15bb58f5ed61df19ad9fee0bcdb8054eeb 100644 (file)
@@ -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