We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Rustdoc::output
run-make-support
1 parent 026e9ed commit a19a8f8Copy full SHA for a19a8f8
src/tools/run-make-support/src/external_deps/rustdoc.rs
@@ -71,14 +71,8 @@ impl Rustdoc {
71
self
72
}
73
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
-
81
/// Specify output directory.
+ #[doc(alias = "output")]
82
pub fn out_dir<P: AsRef<Path>>(&mut self, path: P) -> &mut Self {
83
self.cmd.arg("--out-dir").arg(path.as_ref());
84
0 commit comments