mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
fix typo
This commit is contained in:
parent
0d5a8e446c
commit
3074f8cb89
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user