Skip to content

Commit 1802f7f

Browse files
wanda-phiwhitequark
authored andcommitted
lib.wiring: fix search-and-replace accident. NFC
1 parent fc06dd7 commit 1802f7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

amaranth/lib/wiring.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ def connect(m, *args, **kwargs):
625625
# is completely unrelated `[b]`. Since the assumption that all signatures are equal, or even
626626
# of equal length, cannot be made, it is necessary to simultaneously iterate (like with `zip`)
627627
# the signature of every object being connected, making sure each set of next members is
628-
# is_compliant with each other.
628+
# compliant with each other.
629629
while True:
630630
# Classify the members by kind and flow: signature, In, Out. Flow of signature members is
631631
# implied in the flow of each port member, so the signature members are only classified
@@ -663,7 +663,7 @@ def connect(m, *args, **kwargs):
663663
if member is None:
664664
continue
665665
# At this point we know the paths are equal, but the members can still have
666-
# inis_compliant flow, kind (signature or port), signature, or shape. Collect all of
666+
# incompliant flow, kind (signature or port), signature, or shape. Collect all of
667667
# these for later evaluation.
668668
if member.is_port:
669669
if member.flow == Out:

0 commit comments

Comments
 (0)