Skip to content

Commit

Permalink
Merge pull request #2 from pfmooney/target-error
Browse files Browse the repository at this point in the history
Fix typo in "unknown target" error message
  • Loading branch information
JohnTitor committed Apr 7, 2020
2 parents 3c1bb06 + 04bac2c commit 466af76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ fn default_cfg(target: &str) -> Vec<(String, Option<String>)> {
} else if target.contains("vxworks") {
("vxworks", "unix", "")
} else {
panic!("unknown os/family width: {}", target)
panic!("unknown os/family: {}", target)
};

ret.push((family.to_string(), None));
Expand Down

0 comments on commit 466af76

Please sign in to comment.