diff --git a/toml/parser.hpp b/toml/parser.hpp index e83de1d..882a49c 100644 --- a/toml/parser.hpp +++ b/toml/parser.hpp @@ -881,7 +881,7 @@ parse_array(location& loc) throw syntax_error(format_underline( "[error] toml::parse_array: type of elements should be the " "same each other.", region(loc, first, loc.iter()), - "inhomogenous types")); + "inhomogeneous types")); } retval.push_back(std::move(val.unwrap())); }