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

@@ -3381,7 +3381,7 @@ bool HlslParseContext::constructorError(const TSourceLoc& loc, TIntermNode* /*no
// 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;
}