Skip to content

Commit

Permalink
Auto merge of rust-lang#25644 - iven:fix_doc_warning, r=steveklabnik
Browse files Browse the repository at this point in the history
The syntax with tailing semicolon is deprecated and the compiler will
complain about it.

r? @steveklabnik
  • Loading branch information
bors committed May 21, 2015
2 parents 00b8983 + 2ca3dfd commit d7e4d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ You can control a few aspects of the HTML that `rustdoc` generates through the
```rust
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/")];
html_root_url = "http://doc.rust-lang.org/")]
```

This sets a few different options, with a logo, favicon, and a root URL.
Expand Down

0 comments on commit d7e4d63

Please sign in to comment.