Skip to content

Commit

Permalink
fix: misspelling (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsfotis authored Sep 14, 2024
1 parent d77de32 commit 34f5592
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub fn get_source(
bail!("git repo {url} does not expose any crates")
}
[_, _, ..] => {
bail!("multiple candiate packages found in git repo {url}")
bail!("multiple candidate packages found in git repo {url}")
}
[ref package] => Ok(package.root().to_path_buf()),
}
Expand Down
2 changes: 1 addition & 1 deletion src/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub fn crate_details(
bail!("no package found in directory \"{project_dir:?}\"")
}
[_, _, ..] => {
bail!("multiple candiate packages found in directory \"{project_dir:?}\"")
bail!("multiple candidate packages found in directory \"{project_dir:?}\"")
}
[package] => package,
};
Expand Down

0 comments on commit 34f5592

Please sign in to comment.