Non-functional: Fix typos.

This commit is contained in:
John Kessenich 2016-11-27 17:26:21 -07:00
parent e50dc536ff
commit 509c4216e6
6 changed files with 7 additions and 7 deletions

View file

@ -2313,7 +2313,7 @@ bool TParseContext::constructorError(const TSourceLoc& loc, TIntermNode* node, T
// At least the dimensionalities have to match.
if (! function[0].type->isArray() || arraySizes.getNumDims() != function[0].type->getArraySizes().getNumDims() + 1) {
error(loc, "array constructor argument not correct type to construct array element", "constructior", "");
error(loc, "array constructor argument not correct type to construct array element", "constructor", "");
return true;
}