From 24ac3f68a1f057d9b3a29baf05d8e2a528b81738 Mon Sep 17 00:00:00 2001 From: whitequark Date: Sat, 3 Aug 2019 13:21:09 +0000 Subject: [PATCH] hdl.ast: fix typo. --- nmigen/hdl/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2