Skip to content

Fixup typo in error message (havee -> have) #3453

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions crate_universe/src/splicing/splicer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl<'a> SplicerKind<'a> {
let mut manifest = (*manifest).clone();
let manifest_dir = path
.parent()
.expect("Every manifest should havee a parent directory");
.expect("Every manifest should have a parent directory");

// Link the sources of the root manifest into the new workspace
symlink_roots(
Expand All @@ -158,7 +158,7 @@ impl<'a> SplicerKind<'a> {
// Optionally install the cargo config after contents have been symlinked
Self::setup_cargo_config(&splicing_manifest.cargo_config, workspace_dir.as_std_path())?;

// Add any additional depeendencies to the root package
// Add any additional dependencies to the root package
if !splicing_manifest.direct_packages.is_empty() {
Self::inject_direct_packages(&mut manifest, &splicing_manifest.direct_packages)?;
}
Expand Down Expand Up @@ -186,7 +186,7 @@ impl<'a> SplicerKind<'a> {
) -> Result<SplicedManifest> {
let manifest_dir = path
.parent()
.expect("Every manifest should havee a parent directory");
.expect("Every manifest should have a parent directory");

// Link the sources of the root manifest into the new workspace
symlink_roots(
Expand Down Expand Up @@ -255,7 +255,7 @@ impl<'a> SplicerKind<'a> {
let workspace_metadata = WorkspaceMetadata::new(splicing_manifest, installations)?;
workspace_metadata.inject_into(&mut manifest)?;

// Add any additional depeendencies to the root package
// Add any additional dependencies to the root package
if !splicing_manifest.direct_packages.is_empty() {
Self::inject_direct_packages(&mut manifest, &splicing_manifest.direct_packages)?;
}
Expand Down Expand Up @@ -382,7 +382,7 @@ impl<'a> SplicerKind<'a> {

let manifest_dir = path
.parent()
.expect("Every manifest should havee a parent directory");
.expect("Every manifest should have a parent directory");

let dest_package_dir = workspace_dir.join(package_name);

Expand Down