Skip to content

Commit 3b9ce47

Browse files
kkirscheKevin Kirschesvlandeg
authored
✏️ Fix a few typos in the source and documentation (#1028)
Co-authored-by: Kevin Kirsche <kevin.kirsche@one.verizon.com> Co-authored-by: svlandeg <svlandeg@github.com> Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com>
1 parent 95ba85f commit 3b9ce47

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/help-typer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Here's what to have in mind and how to review a pull request:
147147

148148
* Don't worry too much about things like commit message styles, I will squash and merge customizing the commit manually.
149149

150-
* Also don't worry about style rules, there are already automatized tools checking that.
150+
* Also don't worry about style rules, there are already automated tools checking that.
151151

152152
And if there's any other style or consistency need, I'll ask directly for that, or I'll add commits on top with the needed changes.
153153

docs/tutorial/options/required.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The same way as with `typer.Argument()`, the old style of using the function par
1919

2020
{* docs_src/options/required/tutorial001.py hl[4] *}
2121

22-
Or you can explictily pass `...` to `typer.Option(default=...)`:
22+
Or you can explicitly pass `...` to `typer.Option(default=...)`:
2323

2424
{* docs_src/options/required/tutorial002.py hl[4] *}
2525

tests/test_tutorial/test_subcommands/test_tutorial003.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def test_items_create(app):
4949
result = runner.invoke(app, ["items", "create", "Wand"])
5050
assert result.exit_code == 0
5151
assert "Creating item: Wand" in result.output
52-
# For coverage, becauses the monkeypatch above sometimes confuses coverage
52+
# For coverage, because the monkeypatch above sometimes confuses coverage
5353
result = runner.invoke(items.app, ["create", "Wand"])
5454
assert result.exit_code == 0
5555
assert "Creating item: Wand" in result.output
@@ -59,7 +59,7 @@ def test_items_sell(app):
5959
result = runner.invoke(app, ["items", "sell", "Vase"])
6060
assert result.exit_code == 0
6161
assert "Selling item: Vase" in result.output
62-
# For coverage, becauses the monkeypatch above sometimes confuses coverage
62+
# For coverage, because the monkeypatch above sometimes confuses coverage
6363
result = runner.invoke(items.app, ["sell", "Vase"])
6464
assert result.exit_code == 0
6565
assert "Selling item: Vase" in result.output
@@ -69,7 +69,7 @@ def test_items_delete(app):
6969
result = runner.invoke(app, ["items", "delete", "Vase"])
7070
assert result.exit_code == 0
7171
assert "Deleting item: Vase" in result.output
72-
# For coverage, becauses the monkeypatch above sometimes confuses coverage
72+
# For coverage, because the monkeypatch above sometimes confuses coverage
7373
result = runner.invoke(items.app, ["delete", "Vase"])
7474
assert result.exit_code == 0
7575
assert "Deleting item: Vase" in result.output
@@ -89,7 +89,7 @@ def test_users_create(app):
8989
result = runner.invoke(app, ["users", "create", "Camila"])
9090
assert result.exit_code == 0
9191
assert "Creating user: Camila" in result.output
92-
# For coverage, becauses the monkeypatch above sometimes confuses coverage
92+
# For coverage, because the monkeypatch above sometimes confuses coverage
9393
result = runner.invoke(users.app, ["create", "Camila"])
9494
assert result.exit_code == 0
9595
assert "Creating user: Camila" in result.output
@@ -99,7 +99,7 @@ def test_users_delete(app):
9999
result = runner.invoke(app, ["users", "delete", "Camila"])
100100
assert result.exit_code == 0
101101
assert "Deleting user: Camila" in result.output
102-
# For coverage, becauses the monkeypatch above sometimes confuses coverage
102+
# For coverage, because the monkeypatch above sometimes confuses coverage
103103
result = runner.invoke(users.app, ["delete", "Camila"])
104104
assert result.exit_code == 0
105105
assert "Deleting user: Camila" in result.output

0 commit comments

Comments
 (0)