mirror of https://github.com/VLSIDA/OpenRAM.git
fix typo bug in spice comments code
This commit is contained in:
parent
513c7e9f71
commit
4e649aad6b
|
|
@ -68,7 +68,7 @@ class spice():
|
||||||
self.trim_insts = set()
|
self.trim_insts = set()
|
||||||
# Keep track of any comments to add the the spice
|
# Keep track of any comments to add the the spice
|
||||||
try:
|
try:
|
||||||
self.commments
|
self.comments
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
self.comments = []
|
self.comments = []
|
||||||
|
|
||||||
|
|
@ -82,7 +82,7 @@ class spice():
|
||||||
""" Add a comment to the spice file """
|
""" Add a comment to the spice file """
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.commments
|
self.comments
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
self.comments = []
|
self.comments = []
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue