From 1f4b2db3207d2ff5ae53bc59f6475e1732f97867 Mon Sep 17 00:00:00 2001 From: Robin Ole Heinemann Date: Tue, 17 Sep 2024 23:09:21 +0200 Subject: [PATCH] lib.wiring: fix Signature.is_compliant docstring --- amaranth/lib/wiring.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amaranth/lib/wiring.py b/amaranth/lib/wiring.py index 4a08469af..1122a625f 100644 --- a/amaranth/lib/wiring.py +++ b/amaranth/lib/wiring.py @@ -826,8 +826,8 @@ def is_compliant(self, obj, *, reasons=None, path=("obj",)): satisfying the requirements below; * for port members, is a :ref:`value-like ` object casting to a :class:`Signal` or a :class:`Const` whose width and signedness is the same as that - of the member, and (in case of a :class:`Signal`) which is not reset-less and whose - initial value is that of the member; + of the member, and (in case of a :class:`Signal`) whose initial value is that of the + member; * for signature members, matches the description in the signature as verified by :meth:`Signature.is_compliant`.