Changed "key group" to "table" in error message

This commit is contained in:
moandji.ezana 2014-08-03 14:22:04 +02:00
parent 96016c02d2
commit 59a408314f

View file

@ -43,7 +43,7 @@ class TomlParser extends BaseParser<Object> {
}
if (!Character.isWhitespace(character)) {
results().errors.append("Invalid key group definition: ").append(definition).append(". You may have forgotten a #.\n");
results().errors.append("Invalid table definition: ").append(definition).append(". You may have forgotten a #.\n");
}
}
return true;