From: whitequark Date: Sat, 3 Aug 2019 13:21:09 +0000 (+0000) Subject: hdl.ast: fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=24ac3f68a1f057d9b3a29baf05d8e2a528b81738;p=nmigen.git hdl.ast: fix typo. --- diff --git a/nmigen/hdl/ast.py b/nmigen/hdl/ast.py index 68c3f10..397f738 100644 --- a/nmigen/hdl/ast.py +++ b/nmigen/hdl/ast.py @@ -147,7 +147,7 @@ class Value(metaclass=ABCMeta): return ~premise | conclusion # TODO(nmigen-0.2): move this to nmigen.compat and make it a deprecated extension - @deprecated("instead of `.part`, use `.bit_slip`") + @deprecated("instead of `.part`, use `.bit_select`") def part(self, offset, width): return Part(self, offset, width, src_loc_at=1)