Skip to content

Commit

Permalink
Correct typos in resolver.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
felixonmars authored and micprog committed Jan 8, 2024
1 parent e296486 commit 5a7ced0
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 5a7ced0

Please sign in to comment.