diff options
Diffstat (limited to 'kernel/select.cc')
-rw-r--r-- | kernel/select.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/select.cc b/kernel/select.cc index 3c6fd669c..a6e675c88 100644 --- a/kernel/select.cc +++ b/kernel/select.cc @@ -642,13 +642,13 @@ struct SelectPass : public Pass { log(" whole design.\n"); log("\n"); log(" -module <modname>\n"); - log(" limit the current scope to the specified module\n"); + log(" limit the current scope to the specified module.\n"); log(" the difference between this and simply selecting the module\n"); log(" is that all object names are interpreted relative to this\n"); log(" module after this command until the selection is cleared again.\n"); log("\n"); log("When this command is called without an argument, the current selection\n"); - log("is displayed in a compact form (i.e.. only the module name when a whole module\n"); + log("is displayed in a compact form (i.e. only the module name when a whole module\n"); log("is selected).\n"); log("\n"); log("The <selection> argument itself is a series of commands for a simple stack\n"); @@ -697,8 +697,8 @@ struct SelectPass : public Pass { log(" all objects with a matching attribute name-value-pair\n"); log("\n"); log(" n:<pattern>\n"); - log(" all object with a name matching the given pattern\n"); - log(" (i.e. the n: is optional as it is the default matching rule)\n"); + log(" all objects with a name matching the given pattern\n"); + log(" (i.e. 'n:' is optional as it is the default matching rule)\n"); log("\n"); log(" @<name>\n"); log(" push the selection saved prior with 'select -set <name> ...'\n"); @@ -724,12 +724,12 @@ struct SelectPass : public Pass { log(" pop the top set from the stack and subtract it from the new top\n"); log("\n"); log(" %%x[<num1>|*][.<num2>][:<rule>[:<rule>..]]\n"); - log(" expand top set <num1> num times accorind to the specified rules.\n"); + log(" expand top set <num1> num times according to the specified rules.\n"); log(" (i.e. select all cells connected to selected wires and select all\n"); log(" wires connected to selected cells) The rules specify which cell\n"); log(" ports to use for this. the syntax for a rule is a '-' for exclusion\n"); log(" and a '+' for inclusion, followed by an optional comma seperated\n"); - log(" list of cell types followed by an optional comma seperated list of\n"); + log(" list of cell types followed by an optional comma separated list of\n"); log(" cell ports in square brackets. a rule can also be just a cell or wire\n"); log(" name that limits the expansion (is included but does not go beyond).\n"); log(" select at most <num2> objects. a warning message is printed when this\n"); |