From 0f491bee6976191ea977b4e400e6831844766f84 Mon Sep 17 00:00:00 2001 From: DenisKolodin Date: Sat, 26 Sep 2015 12:16:55 +0300 Subject: [PATCH] Typo fix in use declaration section of reference --- src/doc/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index eeae2de827ae6..b50e3af0fdd95 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -881,7 +881,7 @@ mod foo { } use foo::example::iter; // good: foo is at crate root -// use example::iter; // bad: core is not at the crate root +// use example::iter; // bad: example 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