Skip to content

Commit ffc1fd1

Browse files
committed
docs: Fix terms
1 parent 8363c16 commit ffc1fd1

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

libtmux/pane.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
class Pane(TmuxMappingObject, TmuxRelationalObject):
2020
"""
21-
A :term:`tmux(1)` :term:`pane` [#]_.
21+
A :term:`tmux(1)` :term:`Pane` [#]_.
2222
2323
``Pane`` instances can send commands directly to a pane, or traverse
2424
between linked tmux objects.
@@ -155,7 +155,9 @@ def reset(self):
155155

156156
self.cmd('send-keys', r'-R \; clear-history')
157157

158-
def split_window(self, attach=False, vertical=True, start_directory=None, percent=None):
158+
def split_window(
159+
self, attach=False, vertical=True, start_directory=None, percent=None
160+
):
159161
"""
160162
Split window at pane and return newly created :class:`Pane`.
161163

libtmux/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class Server(TmuxRelationalObject, EnvironmentMixin):
2727

2828
"""
29-
The :term:`tmux(1)` :term:`server` [#]_.
29+
The :term:`tmux(1)` :term:`Server` [#]_.
3030
3131
- :attr:`Server._sessions` [:class:`Session`, ...]
3232

libtmux/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
class Session(TmuxMappingObject, TmuxRelationalObject, EnvironmentMixin):
2929
"""
30-
A :term:`tmux(1)` :term:`session` [#]_.
30+
A :term:`tmux(1)` :term:`Session` [#]_.
3131
3232
Holds :class:`Window` objects.
3333

libtmux/window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
class Window(TmuxMappingObject, TmuxRelationalObject):
2222
"""
23-
A :term:`tmux(1)` :term:`window` [#]_.
23+
A :term:`tmux(1)` :term:`Window` [#]_.
2424
2525
Holds :class:`Pane` objects.
2626

0 commit comments

Comments
 (0)