Skip to content

Commit dbc335b

Browse files
authored
📝 Fix minor inconsistencies and typos in tutorial (#1067)
1 parent b88c327 commit dbc335b

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/tutorial/commands/one-or-multiple.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Usage: main.py [OPTIONS] COMMAND [ARGS]...
129129

130130
Creates a single user Hiro Hamada.
131131

132-
In the next version it will create 5 users more.
132+
In the next version it will create 5 more users.
133133

134134
Options:
135135
--install-completion Install completion for the current shell.

docs/tutorial/commands/options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Commands:
3535
create
3636
delete
3737
delete-all
38-
info
38+
init
3939
```
4040

4141
</div>

docs/tutorial/first-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ In reality, the parameters that require an order can be made *optional* too. And
458458

459459
### In **Typer**
460460

461-
To try and make it a bit easier, we'll normally use the words "parameter" or "argument" to refer to Python functions.
461+
To try and make it a bit easier, we'll normally use the words "parameter" or "argument" to refer to "Python functions parameters" or "Python functions arguments".
462462

463463
We'll use ***CLI argument*** to refer to those *CLI parameters* that depend on the specific order. That are **required** by default.
464464

docs_src/commands/one_or_multiple/tutorial002.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def callback():
1313
"""
1414
Creates a single user Hiro Hamada.
1515
16-
In the next version it will create 5 users more.
16+
In the next version it will create 5 more users.
1717
"""
1818

1919

tests/test_tutorial/test_commands/test_one_or_multiple/test_tutorial002.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_help():
1414
result = runner.invoke(app, ["--help"])
1515
assert result.exit_code == 0
1616
assert "Creates a single user Hiro Hamada." in result.output
17-
assert "In the next version it will create 5 users more." in result.output
17+
assert "In the next version it will create 5 more users." in result.output
1818
assert "Commands" in result.output
1919
assert "create" in result.output
2020

0 commit comments

Comments
 (0)