fix(config): Correct typo in config field name

This commit is contained in:
Ed Page 2021-04-07 20:47:49 -05:00
parent 57ace37ec4
commit 8d02a86f2f

View file

@ -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() {