mirror of
https://github.com/plexusorg/toml4j.git
synced 2024-12-28 19:24:15 +00:00
Improved error message formatting
[ci skip]
This commit is contained in:
parent
a8e1acdba7
commit
8b8722596b
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 #");
|
||||
results().errors.append("Invalid key group definition: ").append(definition).append(". You may have forgotten a #.\n");
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue