Skip to content

Commit

Permalink
hdl.ast: fix typo.
Browse files Browse the repository at this point in the history
Fixes #49.
  • Loading branch information
whitequark committed Mar 25, 2019
1 parent d69a4e2 commit 81ee2db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nmigen/hdl/ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ def __repr__(self):
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):
Expand Down

0 comments on commit 81ee2db

Please sign in to comment.