Skip to content

Commit

Permalink
Fixed build comment typos
Browse files Browse the repository at this point in the history
  • Loading branch information
CorvusPrudens committed Oct 24, 2024
1 parent d5dc1e1 commit 1be9e16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl BuildTargets {
pub fn skip_bin(&self) -> bool {
match (self.bin, self.lib) {
// Only skip when the other target is
// explicitly included and this on is not.
// explicitly included and this one is not.
(false, true) => true,
_ => false,
}
Expand All @@ -94,7 +94,7 @@ impl BuildTargets {
pub fn skip_lib(&self) -> bool {
match (self.bin, self.lib) {
// Only skip when the other target is
// explicitly included and this on is not.
// explicitly included and this one is not.
(true, false) => true,
_ => false,
}
Expand Down

0 comments on commit 1be9e16

Please sign in to comment.