Misc. typo fixes

Various workbenches
This commit is contained in:
Unknown
2017-12-23 07:59:21 -05:00
committed by wmayer
parent f92d63008e
commit e3eca59173
98 changed files with 169 additions and 169 deletions

View File

@@ -1125,7 +1125,7 @@ void segmentation_fault_handler(int sig)
case SIGABRT:
std::cerr << "Abnormal program termination..." << std::endl;
#if !defined(_DEBUG)
throw Base::AbnormalProgramTermination("Break signal occoured");
throw Base::AbnormalProgramTermination("Break signal occurred");
#endif
break;
default:
@@ -1690,7 +1690,7 @@ void Application::runApplication()
Interpreter().runString(Base::ScriptFactory().ProduceScript(mConfig["ScriptFileName"].c_str()));
}
else if (mConfig["RunMode"] == "Exit") {
// geting out
// getting out
Console().Log("Exiting on purpose\n");
}
else {