Skip to content

Commit 337906d

Browse files
authored
docs: Fix typos (#884)
Found via `typos --format brief`
1 parent 222a415 commit 337906d

File tree

15 files changed

+39
-39
lines changed

15 files changed

+39
-39
lines changed

CHANGES

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ This will be the last Python 2.7 release of tmuxp. Bug fixes for python
12841284
- #110 de-vendorize [colorama][colorama]. Thanks [@marbu][@marbu].
12851285
- #109 fix failure of test_pane_order on fedora machines from
12861286
[@marbu][@marbu]
1287-
- #105 append `.txt` extension to manuals (repo ony)
1287+
- #105 append `.txt` extension to manuals (repo only)
12881288
from [@yegortimoshenko][@yegortimoshenko].
12891289
- #107 Fix Server.attached_sessions return type by
12901290
[@thomasballinger][@thomasballinger].
@@ -1445,7 +1445,7 @@ This will be the last Python 2.7 release of tmuxp. Bug fixes for python
14451445
## tmuxp 0.1-rc8 (2013-12-17)
14461446

14471447
- `unicode_literals`
1448-
- Move py2/py3 compliancy code to `_compat`.
1448+
- Move py2/py3 compliance code to `_compat`.
14491449

14501450
## tmuxp 0.1-rc7 (2013-12-07)
14511451

@@ -1690,7 +1690,7 @@ This will be the last Python 2.7 release of tmuxp. Bug fixes for python
16901690
- fix bug where `-v` and `--version` wouldn't print version.
16911691
- property handle case where no tmux server exists when
16921692
`attach-session` or `kill-session` is used.
1693-
- test fixtures and inital work for importing
1693+
- test fixtures and initial work for importing
16941694
[tmuxinator][tmuxinator] and [teamocil][teamocil] configs
16951695

16961696
## tmuxp 0.1-dev (2013-10-24)
@@ -1742,11 +1742,11 @@ This will be the last Python 2.7 release of tmuxp. Bug fixes for python
17421742
{meth}`Server.__list_sessions()` exists to keep the command layered so
17431743
it can be tested against in a matrix with travis and compatibility
17441744
methods can be made.
1745-
- {class}`Session` now has @proprety {meth}`Session.windows` returning a
1745+
- {class}`Session` now has @property {meth}`Session.windows` returning a
17461746
list of {class}`Window` objects via {meth}`Session.list_windows()`.
17471747
@property {meth}`Session._windows` to {meth}`Session._list_windows()`
17481748
to return a list of dicts without making objects.
1749-
- {class}`Window` now has @proprety {meth}`Window.panes` returning a
1749+
- {class}`Window` now has @property {meth}`Window.panes` returning a
17501750
list of {class}`Pane` objects via {meth}`Window.list_panes()`.
17511751
@property {meth}`Window._panes` to {meth}`Window._list_panes()`
17521752
to return a list of dicts without making objects.

MIGRATION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ well.
1212
1313
API changes can be painful.
1414
15-
If we can do something to draw the sting, we'll do it. We're taking a balanced approach. That's why these notes are here!
15+
If we can do something to draw the string, we'll do it. We're taking a balanced approach. That's why these notes are here!
1616
1717
(Please pin the package. 🙏)
1818

docs/_ext/aafig.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sphinxcontrib.aafig
33
~~~~~~~~~~~~~~~~~~~
44
5-
Allow embeded ASCII art to be rendered as nice looking images
5+
Allow embedded ASCII art to be rendered as nice looking images
66
using the aafigure reStructuredText extension.
77
88
See the README file for details.
@@ -98,7 +98,7 @@ def render_aafig_images(app, doctree):
9898
if aafigure is None:
9999
logger.warn(
100100
"aafigure module not installed, ASCII art images "
101-
"will be redered as literal text"
101+
"will be rendered as literal text"
102102
)
103103
for img in doctree.traverse(nodes.image):
104104
if not hasattr(img, "aafig"):
@@ -160,7 +160,7 @@ def render_aafigure(app, text, options):
160160
"aafig: the builder format %s is not officially "
161161
"supported, aafigure images could not work. "
162162
"Please report problems and working builder to "
163-
"avoid this warning inthe future" % app.builder.format
163+
"avoid this warning in the future" % app.builder.format
164164
)
165165
relfn = fname
166166
outfn = path.join(app.builder.outdir, fname)

docs/_static/img/tmuxp.svg

Lines changed: 9 additions & 9 deletions
Loading

docs/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ format [^id4]. See {ref}`cli-freeze`.
6464

6565
**JSON config** JSON config support. See {ref}`Examples`.
6666

67-
**ORM-based API** via [libtmux] - Utilitizes tmux >= 1.8's unique ID's for
67+
**ORM-based API** via [libtmux] - Utilizes tmux >= 1.8's unique ID's for
6868
panes, windows and sessions to create an object relational view of the tmux
6969
{class}`~libtmux.Server`, its {class}`~libtmux.Session`,
7070
{class}`~libtmux.Window`, and {class}`~libtmux.Pane`.

docs/cli/ls.md

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

55
# tmuxp ls
66

7-
List sesssions.
7+
List sessions.
88

99
```{eval-rst}
1010
.. argparse::

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
# sphinxext.opengraph
119119
ogp_site_url = about["__docs__"]
120120
ogp_image = "_static/img/icons/icon-192x192.png"
121-
ogp_desscription_length = about["__description__"]
121+
ogp_description_length = about["__description__"]
122122
ogp_site_name = about["__title__"]
123123

124124
# sphinx-copybutton

docs/plugins/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ python environment. A plugin interface is provided by tmuxp to inherit.
4141
[poetry][poetry] is the chosen python package manager for tmuxp. It is highly
4242
suggested to use it when developing plugins; however, `pip` will work
4343
just as well. Only one of the configuration files is needed for the packaging
44-
tool that the package developer desides to use.
44+
tool that the package developer decides to use.
4545

4646
```console
4747

tests/cli/test_shell.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,27 +139,27 @@ def test_shell(
139139
(
140140
[
141141
"-L{SOCKET_NAME}",
142-
"nonexistant_session",
142+
"nonexistent_session",
143143
"-c",
144144
"print(str(server.socket_name))",
145145
],
146146
[],
147147
{},
148-
{"session_name": "nonexistant_session"},
148+
{"session_name": "nonexistent_session"},
149149
exc.TmuxpException,
150-
"Session not found: nonexistant_session",
150+
"Session not found: nonexistent_session",
151151
),
152152
(
153153
[
154154
"-L{SOCKET_NAME}",
155155
"{SESSION_NAME}",
156-
"nonexistant_window",
156+
"nonexistent_window",
157157
"-c",
158158
"print(str(server.socket_name))",
159159
],
160160
[],
161161
{},
162-
{"window_name": "nonexistant_window"},
162+
{"window_name": "nonexistent_window"},
163163
exc.TmuxpException,
164164
"Window not found: {WINDOW_NAME}",
165165
),

tests/fixtures/workspace/expand1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
{"shell_command": ["vim"]},
1212
{"shell_command": 'cowsay "hey"'},
1313
],
14-
"layout": "main-verticle",
14+
"layout": "main-vertical",
1515
},
1616
{
1717
"window_name": "logging",
@@ -42,7 +42,7 @@ def after_workspace():
4242
{"shell_command": [{"cmd": "vim"}]},
4343
{"shell_command": [{"cmd": 'cowsay "hey"'}]},
4444
],
45-
"layout": "main-verticle",
45+
"layout": "main-vertical",
4646
},
4747
{
4848
"window_name": "logging",

0 commit comments

Comments
 (0)