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 /kernel | |
parent | ba3793b6420f2a0288c43be0cd4016fd5473acaf (diff) | |
download | yosys-cd8008bda01091b7da63d4a2c7b2fe3749ee9f36.tar.gz yosys-cd8008bda01091b7da63d4a2c7b2fe3749ee9f36.tar.bz2 yosys-cd8008bda01091b7da63d4a2c7b2fe3749ee9f36.zip |
fixed typos
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/driver.cc | 2 | ||||
-rw-r--r-- | kernel/select.cc | 12 | ||||
-rw-r--r-- | kernel/show.cc | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/kernel/driver.cc b/kernel/driver.cc index 0da5f68cb..bc605a461 100644 --- a/kernel/driver.cc +++ b/kernel/driver.cc @@ -205,7 +205,7 @@ struct ShellPass : public Pass { log(" yosys [modname]*>\n"); log(" only part of current module 'modname' is selected\n"); log("\n"); - log("When in interavtive shell, some errors (e.g. invalid command arguments)\n"); + log("When in interactive shell, some errors (e.g. invalid command arguments)\n"); log("do not terminate yosys but return to the command prompt.\n"); log("\n"); log("This command is the default action if nothing else has been specified\n"); 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"); diff --git a/kernel/show.cc b/kernel/show.cc index c556c9914..50cddce9b 100644 --- a/kernel/show.cc +++ b/kernel/show.cc @@ -319,7 +319,7 @@ struct ShowPass : public Pass { log(" Also run the specified command with the postscript file as parameter.\n"); log("\n"); log(" -lib <verilog_or_ilang_file>\n"); - log(" Use the specified library file for determining whether cell ports are.\n"); + log(" Use the specified library file for determining whether cell ports are\n"); log(" inputs or outputs. This option can be used multiple times to specify\n"); log(" more than one library.\n"); log("\n"); |