Skip to content

Commit

Permalink
Typo fix in use declaration section of reference
Browse files Browse the repository at this point in the history
  • Loading branch information
therustmonk committed Sep 26, 2015
1 parent 7ebfd85 commit 0f491be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/reference.md
Expand Up @@ -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
Expand Down

0 comments on commit 0f491be

Please sign in to comment.