Skip to content

Commit

Permalink
Fixes lingering references to Resolution::Package
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanis committed Jul 9, 2024
1 parent c5a3b50 commit bca8f30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ fn main() {
match resolution {
Ok(res) => {
match res {
Resolution::Package(p, subpath) => {
Resolution::Resolved(p, subpath) => {
println!("result = Package ({:?}, {:?})", p, subpath);
}
Resolution::Specifier(specifier) => {
println!("result = Specifier ({})", specifier);
Resolution::Skipped => {
println!("result = Skipped");
}
}
}
Expand Down

0 comments on commit bca8f30

Please sign in to comment.