1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 03:57:14 +01:00

Minor spelling mistakes in core class.

This commit is contained in:
Sandu Liviu Catalin 2016-06-17 06:48:13 +03:00
parent 6a31e9ee58
commit 24eddb8051

View File

@ -309,7 +309,7 @@ bool Core::Execute()
catch (const Sqrat::Exception & e) catch (const Sqrat::Exception & e)
{ {
LogFtl("Unable to compile: %s", s.mPath.c_str()); LogFtl("Unable to compile: %s", s.mPath.c_str());
// Failed to executed properly // Failed to execute properly
return false; return false;
} }
// Attempt to execute the compiled script code // Attempt to execute the compiled script code
@ -320,7 +320,7 @@ bool Core::Execute()
catch (const Sqrat::Exception & e) catch (const Sqrat::Exception & e)
{ {
LogFtl("Unable to execute: %s", s.mPath.c_str()); LogFtl("Unable to execute: %s", s.mPath.c_str());
// Failed to executed properly // Failed to execute properly
return false; return false;
} }
// At this point the script should be completely loaded // At this point the script should be completely loaded