diff options
Diffstat (limited to 'passes')
-rw-r--r-- | passes/cmds/select.cc | 6 | ||||
-rw-r--r-- | passes/techmap/techmap.cc | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/passes/cmds/select.cc b/passes/cmds/select.cc index f18e40228..d05000eb1 100644 --- a/passes/cmds/select.cc +++ b/passes/cmds/select.cc @@ -1321,7 +1321,7 @@ struct SelectPass : public Pass { log_cmd_error("No selection to check.\n"); work_stack.back().optimize(design); if (!work_stack.back().empty()) - log_error("Assertation failed: selection is not empty:%s\n", sel_str.c_str()); + log_error("Assertion failed: selection is not empty:%s\n", sel_str.c_str()); return; } @@ -1331,7 +1331,7 @@ struct SelectPass : public Pass { log_cmd_error("No selection to check.\n"); work_stack.back().optimize(design); if (work_stack.back().empty()) - log_error("Assertation failed: selection is empty:%s\n", sel_str.c_str()); + log_error("Assertion failed: selection is empty:%s\n", sel_str.c_str()); return; } @@ -1358,7 +1358,7 @@ struct SelectPass : public Pass { total_count++; } if (assert_count != total_count) - log_error("Assertation failed: selection contains %d elements instead of the asserted %d:%s\n", + log_error("Assertion failed: selection contains %d elements instead of the asserted %d:%s\n", total_count, assert_count, sel_str.c_str()); return; } diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index 8ba028310..30a6d784f 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -1102,7 +1102,7 @@ struct FlattenPass : public Pass { log("pass is very similar to the 'techmap' pass. The only difference is that this\n"); log("pass is using the current design as mapping library.\n"); log("\n"); - log("Cells and/or modules with the 'keep_hiearchy' attribute set will not be\n"); + log("Cells and/or modules with the 'keep_hierarchy' attribute set will not be\n"); log("flattened by this command.\n"); log("\n"); } |