Skip to content

Commit

Permalink
rustdoc: a formatting nit
Browse files Browse the repository at this point in the history
  • Loading branch information
tshepang committed Dec 15, 2016
1 parent f70ad0a commit 8cd3081
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 8cd3081

Please sign in to comment.