1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
This commit is contained in:
Andrey Filipenkov 2023-12-24 09:58:48 +03:00 committed by GitHub
parent 0d5a8e446c
commit 3074f8cb89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -252,7 +252,7 @@ bool JsonParser::extractWhitespace(bool verbose)
if (input[pos] == '/')
pos++;
else
error("Comments must consist from two slashes!", true);
error("Comments must consist of two slashes!", true);
while (pos < input.size() && input[pos] != '\n')
pos++;
@ -410,7 +410,7 @@ bool JsonParser::extractStruct(JsonNode &node)
}
if (node.Struct().find(key) != node.Struct().end())
error("Dublicated element encountered!", true);
error("Duplicate element encountered!", true);
if (!extractSeparator())
return false;