1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00

Fix a typo in an error message

integeer -> integer
This commit is contained in:
Jonathan Tremesaygues 2022-11-15 20:22:26 +01:00 committed by GitHub
parent 32c9c7abc1
commit 504f46a7dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
""" Module that provides the delay class."""
_errmsg = "arg of delay constructor should be a natural integeer"
_errmsg = "arg of delay constructor should be a natural integer"
class delay(object):