Skip to content

Commit d26abdc

Browse files
committed
Fix pydoc for sphinx
1 parent d899725 commit d26abdc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libtmux/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ class TmuxRelationalObject(object):
274274
Object .children method
275275
================ ========================= =================================
276276
:class:`Server` :attr:`Server._sessions` :meth:`Server.list_sessions`
277-
:class:`Session` :attr:`Sessions._windows` :meth:`Session.list_windows`
278-
:class:`Window` :attr:`Windows._panes` :meth:`Window.list_panes`
277+
:class:`Session` :attr:`Session._windows` :meth:`Session.list_windows`
278+
:class:`Window` :attr:`Window._panes` :meth:`Window.list_panes`
279279
:class:`Pane` n/a n/a
280280
================ ========================= =================================
281281

libtmux/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def _list_windows(self):
240240

241241
@property
242242
def _windows(self):
243-
"""Property / alias to return :meth:`~._list_windows`."""
243+
"""Property / alias to return :meth:`Session._list_windows`."""
244244

245245
return self._list_windows()
246246

@@ -258,7 +258,7 @@ def list_windows(self):
258258

259259
@property
260260
def windows(self):
261-
"""Property / alias to return :meth:`~.list_windows`."""
261+
"""Property / alias to return :meth:`Session.list_windows`."""
262262
return self.list_windows()
263263

264264
#: Alias of :attr:`windows`, used by :class:`TmuxRelationalObject`

0 commit comments

Comments
 (0)