From: whitequark Date: Mon, 25 Mar 2019 10:49:29 +0000 (+0000) Subject: hdl.ast: fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c563186d440d9ddddb1763c13c41d4749253afa;p=nmigen.git hdl.ast: fix typo. Fixes #49. --- diff --git a/nmigen/hdl/ast.py b/nmigen/hdl/ast.py index e7fc288..75dad9b 100644 --- a/nmigen/hdl/ast.py +++ b/nmigen/hdl/ast.py @@ -984,7 +984,7 @@ class Delay(Statement): if self.interval is None: return "(delay ε)" else: - return "(delay {:.3}us)".format(self.interval * 10e6) + return "(delay {:.3}us)".format(self.interval * 1e6) class Tick(Statement):