Skip to content

Commit b5f1aa6

Browse files
sloedeskystrife
authored andcommitted
Fix typo in exception error message (#76)
1 parent a8158d1 commit b5f1aa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/cpptoml.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2679,7 +2679,7 @@ class parser
26792679
if (auto v = value->as<Value>())
26802680
arr->get().push_back(value);
26812681
else
2682-
throw_parse_exception("Arrays must be heterogeneous");
2682+
throw_parse_exception("Arrays must be homogeneous");
26832683
skip_whitespace_and_comments(it, end);
26842684
if (*it != ',')
26852685
break;

0 commit comments

Comments
 (0)