Skip to content

Commit

Permalink
fix(config): Correct typo in config field name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Page committed Apr 8, 2021
1 parent 57ace37 commit 8d02a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/policy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ impl<'s> ConfigEngine<'s> {
.iter()
.all(|def| def.name() != type_name.as_str())
{
anyhow::bail!("Unknown type definition `{}`, pass `--type-list` to see valid names or set `extend_globs` to add a new one.", type_name);
anyhow::bail!("Unknown type definition `{}`, pass `--type-list` to see valid names or set `extend_glob` to add a new one.", type_name);
}
} else {
for glob in type_engine.extend_glob.iter() {
Expand Down

0 comments on commit 8d02a86

Please sign in to comment.