Skip to content

Commit 8e7c0ab

Browse files
authored
Lowercase docs error message for consistency
1 parent 888ae72 commit 8e7c0ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/core/compiler/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ fn rustdoc(cx: &mut Context<'_, '_>, unit: &Unit) -> CargoResult<Work> {
614614
&mut |line| on_stderr_line(state, line, package_id, &target, &mut output_options),
615615
false,
616616
)
617-
.chain_err(|| format!("Could not document `{}`.", name))?;
617+
.chain_err(|| format!("could not document `{}`.", name))?;
618618
Ok(())
619619
}))
620620
}

0 commit comments

Comments
 (0)