Skip to content

Commit

Permalink
Merge pull request #141 from felixonmars/patch-1
Browse files Browse the repository at this point in the history
Correct typos in resolver.rs
  • Loading branch information
micprog authored Jan 8, 2024
2 parents e296486 + 5a7ced0 commit f53c4b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ impl<'ctx> DependencyResolver<'ctx> {
DependencyVersions::Path => (0..1).collect(),
DependencyVersions::Registry(ref _rv) => {
return Err(Error::new(format!(
"Resolution of registry dependency `{}` not yet imlemented",
"Resolution of registry dependency `{}` not yet implemented",
dep.name
)));
}
Expand Down Expand Up @@ -592,7 +592,7 @@ impl<'ctx> DependencyResolver<'ctx> {
State::Picked(ids.first().copied().unwrap(), ids.clone())
}
DependencyVersions::Registry(..) => {
return Err(Error::new(format!("Version picking for registry dependency `{}` not yet imlemented", dep.name)));
return Err(Error::new(format!("Version picking for registry dependency `{}` not yet implemented", dep.name)));
}
}
}
Expand Down

0 comments on commit f53c4b8

Please sign in to comment.