diff --git a/src/doc/reference.md b/src/doc/reference.md index 936c0aac79f..089db3f359c 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -1061,7 +1061,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