Skip to content

Commit

Permalink
docs: Run intraconv
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Page committed Jan 31, 2021
1 parent 64be71e commit 1471b4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/build.rs
Expand Up @@ -53,7 +53,6 @@ impl CargoBuild {
/// .unwrap();
/// ```
///
/// [`Cargo`]: struct.Cargo.html
pub fn new() -> Self {
Cargo::new().build()
}
Expand Down
4 changes: 2 additions & 2 deletions src/run.rs
Expand Up @@ -35,7 +35,7 @@ use crate::msg::*;
/// println!("artifact={}", run.path().display());
/// ```
///
/// [`CargoBuild::run`]: struct.CargoBuild.html#method.run
/// [`CargoBuild::run`]: CargoBuild::run()
pub struct CargoRun {
bin_path: path::PathBuf,
}
Expand Down Expand Up @@ -96,7 +96,7 @@ impl CargoRun {
/// println!("artifact={}", run.path().display());
/// ```
///
/// [`Command`]: https://doc.rust-lang.org/std/process/struct.Command.html
/// [`Command`]: std::process::Command
pub fn path(&self) -> &path::Path {
&self.bin_path
}
Expand Down
4 changes: 2 additions & 2 deletions src/test.rs
Expand Up @@ -35,7 +35,7 @@ use crate::msg::*;
/// println!("artifact={}", run.path().display());
/// ```
///
/// [`CargoBuild::run_tests`]: struct.CargoBuild.html#method.run_tests
/// [`CargoBuild::run_tests`]: CargoBuild::run_tests()
pub struct CargoTest {
bin_path: path::PathBuf,
kind: String,
Expand Down Expand Up @@ -130,7 +130,7 @@ impl CargoTest {
/// assert_eq!(run.len(), 3);
/// ```
///
/// [`Command`]: https://doc.rust-lang.org/std/process/struct.Command.html
/// [`Command`]: std::process::Command
pub fn path(&self) -> &path::Path {
&self.bin_path
}
Expand Down

0 comments on commit 1471b4f

Please sign in to comment.