mirror of
https://github.com/plexusorg/toml4j.git
synced 2024-12-29 11:42:15 +00:00
Changed "key group" to "table" in error message
This commit is contained in:
parent
96016c02d2
commit
59a408314f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue