diff --git a/amaranth/lib/wiring.py b/amaranth/lib/wiring.py index e9c6b45..bc30bc8 100644 --- a/amaranth/lib/wiring.py +++ b/amaranth/lib/wiring.py @@ -499,8 +499,8 @@ def _gettypeattr(obj, attr): return cls.__dict__[attr] except KeyError: pass - # Call ``getattr`` In case there is ``__getattr__`` on the metaclass, or just to generate - # an ``AttributeError`` with the standard message. + # Call `getattr` In case there is `__getattr__` on the metaclass, or just to generate + # an `AttributeError` with the standard message. return getattr(type(obj), attr) @@ -594,7 +594,7 @@ class FlippedInterface: # FIXME: document this logic - # See the note in ``FlippedSignature``. In addition, these accessors also handle flipping of + # See the note in `FlippedSignature`. In addition, these accessors also handle flipping of # an interface member. def __getattr__(self, name):