Skip to content

Commit

Permalink
Fix typo in "unknown target" error message
Browse files Browse the repository at this point in the history
  • Loading branch information
pfmooney committed Mar 30, 2020
1 parent 4fe24c4 commit 04bac2c
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 @@ -1114,7 +1114,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 04bac2c

Please sign in to comment.