diff options
author | bloodstalker <thabogre@gmail.com> | 2017-07-15 15:10:37 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-07-15 15:10:37 +0000 |
commit | e099be2e2c6a5b040eda921284962a494849eada (patch) | |
tree | 376391ca5e8cffb9d773da309d03ed5c7f54f6a2 /bruiser/bruiser.cpp | |
parent | changed the translation to use the updated legacy helper macros (diff) | |
download | mutator-e099be2e2c6a5b040eda921284962a494849eada.tar.gz mutator-e099be2e2c6a5b040eda921284962a494849eada.zip |
fixed a help comment
Diffstat (limited to '')
-rw-r--r-- | bruiser/bruiser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bruiser/bruiser.cpp b/bruiser/bruiser.cpp index 25531e9..c8f4049 100644 --- a/bruiser/bruiser.cpp +++ b/bruiser/bruiser.cpp @@ -101,7 +101,7 @@ namespace cl::opt<bool> Intrusive("intrusive", cl::desc("If set true. bruiser will mutate the source."), cl::init(true), cl::cat(BruiserCategory), cl::ZeroOrMore); cl::opt<std::string> M0XMLPath("xmlpath", cl::desc("tells bruiser where to find the XML file containing the Mutator-LVL0 report."), cl::init(bruiser::M0REP), cl::cat(BruiserCategory), cl::ZeroOrMore); cl::opt<bool> LuaJIT("jit", cl::desc("should bruiser use luajit or not."), cl::init(true), cl::cat(BruiserCategory), cl::ZeroOrMore); -cl::opt<std::string> NonCLILuaScript("lua", cl::desc("specifies a lua script for bruiser to run in non-interactiv mode"), cl::init(""), cl::cat(BruiserCategory), cl::Optional); +cl::opt<std::string> NonCLILuaScript("lua", cl::desc("specifies a lua script for bruiser to run in non-interactive mode"), cl::init(""), cl::cat(BruiserCategory), cl::Optional); /**********************************************************************************************************************/ class LuaEngine { |