Skip to content

Commit 560a01c

Browse files
fix formatting
1 parent d0c9385 commit 560a01c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/librustdoc/config.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -525,9 +525,9 @@ fn check_deprecated_options(matches: &getopts::Matches, diag: &errors::Handler)
525525
/// Extracts `--extern-html-root-url` arguments from `matches` and returns a map of crate names to
526526
/// the given URLs. If an `--extern-html-root-url` argument was ill-formed, returns an error
527527
/// describing the issue.
528-
fn parse_extern_html_roots(matches: &getopts::Matches)
529-
-> Result<BTreeMap<String, String>, &'static str>
530-
{
528+
fn parse_extern_html_roots(
529+
matches: &getopts::Matches,
530+
) -> Result<BTreeMap<String, String>, &'static str> {
531531
let mut externs = BTreeMap::new();
532532
for arg in &matches.opt_strs("extern-html-root-url") {
533533
let mut parts = arg.splitn(2, '=');

0 commit comments

Comments
 (0)