Spelling fixes, phase 1.

This commit is contained in:
Jason Turner
2014-05-29 20:16:47 -06:00
parent e5d723621f
commit 4018c873dc
18 changed files with 65 additions and 66 deletions

View File

@@ -365,7 +365,7 @@ namespace chaiscript
++begin;
bool sizemismatch = false;
bool size_mismatch = false;
while (begin != end)
{
@@ -373,7 +373,7 @@ namespace chaiscript
if (param_types.size() != type_infos.size())
{
sizemismatch = true;
size_mismatch = true;
}
for (size_t i = 0; i < type_infos.size() && i < param_types.size(); ++i)
@@ -389,7 +389,7 @@ namespace chaiscript
assert(type_infos.size() > 0 && " type_info vector size is < 0, this is only possible if something else is broken");
if (sizemismatch)
if (size_mismatch)
{
type_infos.resize(1);
}