mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
Another block of spelling fixes
Smaller this time
This commit is contained in:
parent
022f570563
commit
6c00704a5e
24 changed files with 53 additions and 53 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue