aboutsummaryrefslogtreecommitdiffstats
path: root/backends
diff options
context:
space:
mode:
authorJannis Harder <me@jix.one>2022-03-21 18:27:05 +0100
committerJannis Harder <me@jix.one>2022-03-24 16:01:14 +0100
commite43ebf8527388315081bc5da954fc82f5d80ebc5 (patch)
tree782efed3af06f4e5da24e3bce1f016a370d20a91 /backends
parent6318db6152d053244adb316fda6e01a32a4f3c72 (diff)
downloadyosys-e43ebf8527388315081bc5da954fc82f5d80ebc5.tar.gz
yosys-e43ebf8527388315081bc5da954fc82f5d80ebc5.tar.bz2
yosys-e43ebf8527388315081bc5da954fc82f5d80ebc5.zip
yosys-smtbmc: Fix typo in help text, remove trailing whitespace
Diffstat (limited to 'backends')
-rw-r--r--backends/smt2/smtbmc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py
index 7e0d8f571..98804bb32 100644
--- a/backends/smt2/smtbmc.py
+++ b/backends/smt2/smtbmc.py
@@ -143,7 +143,7 @@ def usage():
--dump-all
when using -g or -i, create a dump file for each
- step. The character '%' is replaces in all dump
+ step. The character '%' is replaced in all dump
filenames with the step number.
--append <num_steps>
@@ -829,7 +829,7 @@ def char_ok_in_verilog(c,i):
return False
def escape_identifier(identifier):
- if type(identifier) is list:
+ if type(identifier) is list:
return map(escape_identifier, identifier)
if "." in identifier:
return ".".join(escape_identifier(identifier.split(".")))