Skip to content

Commit

Permalink
Rollup merge of rust-lang#38395 - tshepang:nit, r=steveklabnik
Browse files Browse the repository at this point in the history
rustdoc: a formatting nit
  • Loading branch information
alexcrichton committed Dec 20, 2016
2 parents 0874149 + 8cd3081 commit 55b8660
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/librustdoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,10 +259,11 @@ pub fn main_args(args: &[String]) -> isize {
}

let external_html = match ExternalHtml::load(
&matches.opt_strs("html-in-header"), &matches.opt_strs("html-before-content"),
&matches.opt_strs("html-in-header"),
&matches.opt_strs("html-before-content"),
&matches.opt_strs("html-after-content")) {
Some(eh) => eh,
None => return 3
None => return 3,
};
let crate_name = matches.opt_str("crate-name");
let playground_url = matches.opt_str("playground-url");
Expand Down

0 comments on commit 55b8660

Please sign in to comment.