Skip to content

Commit

Permalink
- fixed typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Aug 18, 2018
1 parent 12b8510 commit 34f2d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripting/backend/codegen.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 34f2d8f

Please sign in to comment.