Skip to content

Commit a19a8f8

Browse files
Remove duplicated Rustdoc::output method from run-make-support lib
1 parent 026e9ed commit a19a8f8

File tree

1 file changed

+1
-7
lines changed
  • src/tools/run-make-support/src/external_deps

1 file changed

+1
-7
lines changed

Diff for: src/tools/run-make-support/src/external_deps/rustdoc.rs

+1-7
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,8 @@ impl Rustdoc {
7171
self
7272
}
7373

74-
/// Specify path to the output folder.
75-
pub fn output<P: AsRef<Path>>(&mut self, path: P) -> &mut Self {
76-
self.cmd.arg("-o");
77-
self.cmd.arg(path.as_ref());
78-
self
79-
}
80-
8174
/// Specify output directory.
75+
#[doc(alias = "output")]
8276
pub fn out_dir<P: AsRef<Path>>(&mut self, path: P) -> &mut Self {
8377
self.cmd.arg("--out-dir").arg(path.as_ref());
8478
self

0 commit comments

Comments
 (0)