Skip to content
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

docs: fix typos #442

Merged
merged 1 commit into from
Feb 19, 2023
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
- Clean up error handling, remove unwrap() calls, logging. [#188]
- Update lint enforcement level based on issue. [#189]
- Implement Display for FoundWarningsError instead of relying on Debug. [#191]
- Add futher testing. [#192]
- Add further testing. [#192]
- Fix Args::parse_args for -p option. [#196]
- Refactor mapping module to use traits. [#197]
- Fix into target kind function logic. [#198]
Expand Down
4 changes: 2 additions & 2 deletions cargo-geiger/src/tree/traversal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub fn walk_dependency_tree(
let mut visited_deps = HashSet::new();
let mut levels_continue = vec![];

let mut walk_dependency_paramters = WalkDependencyParameters {
let mut walk_dependency_parameters = WalkDependencyParameters {
graph,
levels_continue: &mut levels_continue,
print_config,
Expand All @@ -46,6 +46,6 @@ pub fn walk_dependency_tree(
walk_dependency_node(
cargo_metadata_parameters,
node,
&mut walk_dependency_paramters,
&mut walk_dependency_parameters,
)
}
2 changes: 1 addition & 1 deletion cargo-geiger/tests/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl Context {
.expect("Failed to canonicalize temporary path");
// Canonicalizing on Windows returns a UNC path (starting with `\\?\`).
// `cargo build` (as of 1.47.0) fails to use an overriding path dependency if the manifest
// given to `cargo build` is a UNC path. Roudtripping to URL gets rid of the UNC prefix.
// given to `cargo build` is a UNC path. Roundtripping to URL gets rid of the UNC prefix.
let path = if cfg!(windows) {
Url::from_file_path(path)
.expect("URL from path must succeed")
Expand Down