diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-02-02 10:58:17 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-02-02 10:58:17 -0800 |
| commit | 10de0d9898a55e167f866cffaa0b6a48a8cd0a64 (patch) | |
| tree | 51b4ba5834962a2e4180438b9409028d08af928e /src/doc/reference.md | |
| parent | 04213ebd98998a4f5f620536666731fb7ff6418d (diff) | |
| parent | 7eaa589fe519298893899a8581d57667f9427a11 (diff) | |
| download | rust-10de0d9898a55e167f866cffaa0b6a48a8cd0a64.tar.gz rust-10de0d9898a55e167f866cffaa0b6a48a8cd0a64.zip | |
rollup merge of #21819: dsyang/doc_fix
as titled. See issue #21770
Diffstat (limited to 'src/doc/reference.md')
| -rw-r--r-- | src/doc/reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index fd65393897b..d7cc826d10b 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -1063,7 +1063,7 @@ mod foo { extern crate core; use foo::core::iter; // good: foo is at crate root -// use core::iter; // bad: native is not at the crate root +// use core::iter; // bad: core is not at the crate root use self::baz::foobaz; // good: self refers to module 'foo' use foo::bar::foobar; // good: foo is at crate root |
