diff options
author | Johann Glaser <Johann.Glaser@gmx.at> | 2013-03-17 22:02:30 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-03-18 07:28:31 +0100 |
commit | cd8008bda01091b7da63d4a2c7b2fe3749ee9f36 (patch) | |
tree | 8da22fcbe26dcad0c0babcba07a965ef0623233b /passes/submod | |
parent | ba3793b6420f2a0288c43be0cd4016fd5473acaf (diff) | |
download | yosys-cd8008bda01091b7da63d4a2c7b2fe3749ee9f36.tar.gz yosys-cd8008bda01091b7da63d4a2c7b2fe3749ee9f36.tar.bz2 yosys-cd8008bda01091b7da63d4a2c7b2fe3749ee9f36.zip |
fixed typos
Diffstat (limited to 'passes/submod')
-rw-r--r-- | passes/submod/submod.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/submod/submod.cc b/passes/submod/submod.cc index f30e415b3..f91d1ec3a 100644 --- a/passes/submod/submod.cc +++ b/passes/submod/submod.cc @@ -239,7 +239,7 @@ struct SubmodWorker }; struct SubmodPass : public Pass { - SubmodPass() : Pass("submod", "moving part of a module to a new submodle") { } + SubmodPass() : Pass("submod", "moving part of a module to a new submodule") { } virtual void help() { // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| @@ -259,7 +259,7 @@ struct SubmodPass : public Pass { } virtual void execute(std::vector<std::string> args, RTLIL::Design *design) { - log_header("Executing SUBMOD pass (moving cells to submodes as requested).\n"); + log_header("Executing SUBMOD pass (moving cells to submodules as requested).\n"); log_push(); Pass::call(design, "opt_rmunused"); |