Skip to content

Commit c0b5d9f

Browse files
committed
docs(typos): typos --format brief --write-changes
1 parent 05dd606 commit c0b5d9f

File tree

14 files changed

+33
-33
lines changed

14 files changed

+33
-33
lines changed

CHANGES

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ _Maintenance only, no bug fixes, or new features_
105105

106106
- Server.new_session: Accept `x` and `y`, thanks
107107
@rockandska (#469)
108-
- New test fixture: `session_params`. The dict is used direclty in the `session`
108+
- New test fixture: `session_params`. The dict is used directly in the `session`
109109
pytest fixture (#470)
110110

111111
## libtmux 0.19.1 (2022-01-07)
@@ -565,7 +565,7 @@ _Maintenance only, no bug fixes, or new features_
565565
#343)
566566

567567
The separator is configurable via `LIBTMUX_TMUX_FORMAT_SEPARATOR`. If you ever
568-
have compatiblity issues in the future let us know which default works best
568+
have compatibility issues in the future let us know which default works best
569569
across versions.
570570

571571
Credit: @JonathanRaiman and @jagguli
@@ -796,7 +796,7 @@ Python 2.7 support dropped.
796796

797797
- Raise exception for invalid session names. tmux does not
798798
allow names that are empty, contain periods or colons.
799-
- Remove unused `target_sesssion` param in
799+
- Remove unused `target_session` param in
800800
`Server.attach_session` and `Server.switch_client`.
801801

802802
## libtmux 0.5.1 (2016-08-18)

docs/_static/img/libtmux.svg

Lines changed: 9 additions & 9 deletions
Loading

docs/conf.py

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

128128
htmlhelp_basename = f"{about['__title__']}doc"

docs/pytest-plugin/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ You could also read the code and override {func}`server fixtures <libtmux.pytest
7474
### Custom session parameters
7575

7676
You can override `session_params` to custom the `session` fixture. The
77-
dictionary will directly pass into :meth:`Server.new_sesion` keyword arguments.
77+
dictionary will directly pass into :meth:`Server.new_session` keyword arguments.
7878

7979
```python
8080
import pytest

docs/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $ pip install --user libtmux
3232
### Developmental releases
3333

3434
New versions of libtmux are published to PyPI as alpha, beta, or release candidates. In their
35-
versions you will see notfication like `a1`, `b1`, and `rc1`, respectively. `1.10.0b4` would mean
35+
versions you will see notification like `a1`, `b1`, and `rc1`, respectively. `1.10.0b4` would mean
3636
the 4th beta release of `1.10.0` before general availability.
3737

3838
- [pip]\:
@@ -219,7 +219,7 @@ Method 1: Use passthrough to tmux's `target` system.
219219
>>> session.kill_window(window.window_id)
220220
```
221221

222-
The window in the bg dissappeared. This was the equivalent of
222+
The window in the bg disappeared. This was the equivalent of
223223
`$ tmux kill-window -t'ha in'`
224224

225225
Internally, tmux uses `target`. Its specific behavior depends on what the

docs/reference/properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is done through accessing the [formats][formats] available in `list-session
99

1010
Open two terminals:
1111

12-
Terminal one: start tmux in a seperate terminal:
12+
Terminal one: start tmux in a separate terminal:
1313

1414
```console
1515
$ tmux

docs/topics/traversal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
# Usage
44

5-
libtmux convenient access to move around the hierachy of sessions,
5+
libtmux convenient access to move around the hierarchy of sessions,
66
windows and panes in tmux.
77

88
This is done by libtmux's object abstraction of {term}`target`s (the `-t`
99
argument) and the permanent internal ID's tmux gives to objects.
1010

1111
Open two terminals:
1212

13-
Terminal one: start tmux in a seperate terminal:
13+
Terminal one: start tmux in a separate terminal:
1414

1515
```console
1616
$ tmux

src/libtmux/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def session_check_name(session_name: t.Optional[str]) -> None:
463463
def handle_option_error(error: str) -> t.Type[exc.OptionError]:
464464
"""Raises exception if error in option command found.
465465
466-
In tmux 3.0, show-option and show-window-otion return invalid option instead of
466+
In tmux 3.0, show-option and show-window-option return invalid option instead of
467467
unknown option. See https://github.com/tmux/tmux/blob/3.0/cmd-show-options.c.
468468
469469
In tmux >2.4, there are 3 different types of option errors:

src/libtmux/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def temp_window(
286286

287287

288288
class EnvironmentVarGuard:
289-
"""Mock environmental variables safetly.
289+
"""Mock environmental variables safely.
290290
291291
Helps rotect the environment variable properly. Can be used as context
292292
manager.

tests/legacy_api/test_session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def test_show_option_ambiguous(session: Session) -> None:
161161
session.show_option("default-")
162162

163163

164-
def test_set_option_ambigous(session: Session) -> None:
164+
def test_set_option_ambiguous(session: Session) -> None:
165165
"""Session.set_option raises AmbiguousOption for invalid option."""
166166
with pytest.raises(exc.AmbiguousOption):
167167
session.set_option("default-", 43)
@@ -251,7 +251,7 @@ def test_periods_raise_badsessionname(
251251
server.switch_client(new_name)
252252

253253

254-
def test_cmd_inserts_sesion_id(session: Session) -> None:
254+
def test_cmd_inserts_session_id(session: Session) -> None:
255255
current_session_id = session.id
256256
last_arg = "last-arg"
257257
cmd = session.cmd("not-a-command", last_arg)

0 commit comments

Comments
 (0)