- fixed typo in error message

This commit is contained in:
alexey.lysiuk 2018-08-18 17:45:26 +03:00 committed by GitHub
parent 12b8510574
commit 34f2d8f310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2482,7 +2482,7 @@ FxExpression *FxAssign::Resolve(FCompileContext &ctx)
}
else if (Base->IsDynamicArray())
{
ScriptPosition.Message(MSG_ERROR, "Cannot assign dymanic arrays, use Copy() or Move() function instead");
ScriptPosition.Message(MSG_ERROR, "Cannot assign dynamic arrays, use Copy() or Move() function instead");
delete this;
return nullptr;
}