Skip to content

Commit 13279cc

Browse files
authored
Fix a typo in RFC #2.
2 parents 1e81be5 + 692dc45 commit 13279cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

text/0002-interfaces.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ In some cases, an outer elaboratable object creates an inner elaboratable object
435435

436436
```python
437437
class Outer(Component):
438-
bus: BusSignature()
438+
bus: Out(BusSignature())
439439

440440
def __init__(self):
441441
super().__init__()
@@ -454,7 +454,7 @@ class Outer(Component):
454454

455455

456456
class Inner(Component):
457-
bus: BusSignature()
457+
bus: Out(BusSignature())
458458

459459
...
460460
```
@@ -465,7 +465,7 @@ An additional function `amaranth.lib.wiring.flipped(obj)` is added to assist in
465465

466466
```python
467467
class Outer(Component):
468-
bus: BusSignature()
468+
bus: Out(BusSignature())
469469

470470
def __init__(self):
471471
super().__init__()

0 commit comments

Comments
 (0)