Skip to content

Commit eae22d9

Browse files
committed
Merge branch 'fix_stypes_typo' into develop
2 parents 7d378e0 + a209743 commit eae22d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

veriloggen/stream/stypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def Variable(data=None, width=32, point=0, signed=True):
4949
def Parameter(name, value, width=32, point=0, signed=True):
5050
""" parameter with an immediate value """
5151
if not isinstance(name, str):
52-
raise TypeError("'name' must be str, not '%s'" % str(tyep(name)))
52+
raise TypeError("'name' must be str, not '%s'" % str(type(name)))
5353
return _ParameterVariable(name, width, point, signed, value=value)
5454

5555

0 commit comments

Comments
 (0)