Tweaked error message

This commit is contained in:
Jason Bosco 2022-03-24 22:32:23 -05:00 committed by GitHub
parent 369c1b45b7
commit 1e622aa3a3

View File

@ -109,7 +109,7 @@ struct override_t {
if(override_json.count("includes") == 0 && override_json.count("excludes") == 0 &&
override_json.count("filter_by") == 0 && override_json.count("remove_matched_tokens") == 0) {
return Option<bool>(400, "Must contain one of:`includes`, `excludes`, "
return Option<bool>(400, "Must contain one of: `includes`, `excludes`, "
"`filter_by`, `remove_matched_tokens`.");
}