Fix initcol error message wording

This commit is contained in:
Martin Vierula
2022-04-26 16:40:03 -07:00
parent 563fabebff
commit f7f8a9827f
2 changed files with 3 additions and 1 deletions

View File

@@ -46,7 +46,7 @@ bool InitCol::init(std::string *error) {
m_collection_key != "global" &&
m_collection_key != "resource") {
error->assign("Something wrong with initcol: collection must be " \
"`ip' or `global'");
"`ip', `global' or `resource'");
return false;
}