Skip to content

Commit 9760d65

Browse files
committed
[core] attribute: Refactoring: Fix documentation
1 parent c460c29 commit 9760d65

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

meshroom/core/attribute.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -478,13 +478,13 @@ def matchText(self, text: str) -> bool:
478478
inputLinksChanged = Signal()
479479
outputLinksChanged = Signal()
480480

481-
# Whether the attribute is a direct link to another attribute.
481+
# Whether the attribute is a link to another attribute.
482482
isLink = Property(bool, _isLink, notify=inputLinksChanged)
483-
# The direct upstream connected root attribute.
483+
# The upstream connected root attribute.
484484
inputRootLink = Property(Variant, lambda self: self._getInputLink(recursive=True), notify=inputLinksChanged)
485-
# The direct upstream connected attribute.
485+
# The upstream connected attribute.
486486
inputLink = Property(BaseObject, _getInputLink, notify=inputLinksChanged)
487-
# The list of direct downstream connected attributes.
487+
# The list of downstream connected attributes.
488488
outputLinks = Property(Variant, _getOutputLinks, notify=outputLinksChanged)
489489
# The list of upstream connected attributes for the attribute or any of its elements.
490490
allInputLinks = Property(Variant, _getAllInputLinks, notify=inputLinksChanged)

0 commit comments

Comments
 (0)