From 02756f6ec79ae3f97339b334c8f0f278cae3e257 Mon Sep 17 00:00:00 2001 From: Catherine Date: Mon, 27 Nov 2023 13:25:29 +0000 Subject: [PATCH] lib.wiring: comment cleanup. NFC --- amaranth/lib/wiring.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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):