Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cargo/core/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ impl Target {
*self.kind() == TargetKind::CustomBuild
}

/// Returns `true` if it is a compile time depencencies, e.g., build script or proc macro
/// Returns `true` if it is a compile time dependencies, e.g., build script or proc macro
pub fn is_compile_time_dependency(&self) -> bool {
self.is_custom_build() || self.proc_macro()
}
Expand Down
2 changes: 1 addition & 1 deletion src/doc/src/reference/build-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ both directories point to a directory named `target` in the root of your
value, or the `--target-dir` command-line flag. To change the location of the build-dir, you can set the
`CARGO_BUILD_BUILD_DIR` [environment variable] or the [`build.build-dir`] config value.

Artifacts are split in two catagories:
Artifacts are split in two categories:
* Final build artifacts
* Final build artifacts are output meant for end users of Cargo
* e.g. binaries for bin crates, output of `cargo doc`, Cargo `--timings` reports
Expand Down
Loading