Skip to content

Commit

Permalink
Auto merge of #28858 - jryans:crate-doc-syntax, r=alexcrichton
Browse files Browse the repository at this point in the history
Without the blank lines, the content is displayed inline, including the `rust,ignore` syntax hint.

r? @steveklabnik
  • Loading branch information
bors committed Oct 6, 2015
2 parents 547c2cd + ed97bcd commit 2f60768
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/doc/trpl/crates-and-modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -576,11 +576,13 @@ The third `use` statement bears more explanation. It's using "brace expansion"
globbing to compress three `use` statements into one (this sort of syntax
may be familiar if you've written Linux shell scripts before). The
uncompressed form of this statement would be:
```rust,ignore
use sayings::english;
use sayings::english::greetings as en_greetings;
use sayings::english::farewells as en_farewells;
```
As you can see, the curly brackets compress `use` statements for several items
under the same path, and in this context `self` just refers back to that path.
Note: The curly brackets cannot be nested or mixed with star globbing.

0 comments on commit 2f60768

Please sign in to comment.