mirror of
https://github.com/plexusorg/toml4j.git
synced 2025-01-01 13:02:37 +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)) {
|
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;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue