From 504f46a7dd56d78538547bb74515dd55ac1668fb Mon Sep 17 00:00:00 2001 From: Jonathan Tremesaygues Date: Tue, 15 Nov 2022 20:22:26 +0100 Subject: [PATCH] Fix a typo in an error message integeer -> integer --- myhdl/_delay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/myhdl/_delay.py b/myhdl/_delay.py index 0bc918bd..dfd2b577 100644 --- a/myhdl/_delay.py +++ b/myhdl/_delay.py @@ -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):