@@ -66,7 +66,7 @@ def as_json(self): # type: ignore
6666
6767
6868class 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
135135def 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
148148def 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
161161def 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