Skip to content

Commit 8aa52a6

Browse files
lansergerobtaylor
authored andcommitted
Fixed spelling of Signature word
1 parent fa676f7 commit 8aa52a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

chipflow_lib/platforms/utils.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def as_json(self): # type: ignore
6666

6767

6868
class PinSignature(wiring.Signature):
69-
"""Amaranth Signtaure used to decorate wires that would usually be brought out onto a port on the package.
69+
"""Amaranth Signature used to decorate wires that would usually be brought out onto a port on the package.
7070
This class is generally not directly used.
7171
Instead, you would typically utilize the more specific
7272
:py:obj:`InputPinSignature`, :py:obj:`OutputPinSignature`, or :py:obj:`BidirPinSignature` for defining pin interfaces.
@@ -133,7 +133,7 @@ def __repr__(self):
133133

134134

135135
def OutputPinSignature(width, **kwargs):
136-
"""This creates Amaranth Signtaure used to decorate package output wires
136+
"""This creates Amaranth Signature used to decorate package output wires
137137
that would be connected to the pads on the package.
138138
This creates an Amaranth Signature which is then used to decorate output signals
139139
intended for connection to the physical pads of the integrated circuit package.
@@ -146,7 +146,7 @@ def OutputPinSignature(width, **kwargs):
146146

147147

148148
def InputPinSignature(width, **kwargs):
149-
"""This creates Amaranth Signtaure used to decorate package input wires
149+
"""This creates Amaranth Signature used to decorate package input wires
150150
that would be connected to the pads on the package.
151151
This creates an Amaranth Signature which is then used to decorate input signals
152152
intended for connection to the physical pads of the integrated circuit package.
@@ -159,7 +159,7 @@ def InputPinSignature(width, **kwargs):
159159

160160

161161
def BidirPinSignature(width, **kwargs):
162-
"""This creates Amaranth Signtaure used to decorate package bidirectional wires
162+
"""This creates Amaranth Signature used to decorate package bidirectional wires
163163
that would be connected to the pads on the package.
164164
This creates an Amaranth Signature which is then used to decorate bi-directional signals
165165
intended for connection to the physical pads of the integrated circuit package.

0 commit comments

Comments
 (0)