Skip to content

Commit 1b47cae

Browse files
committed
Fix spelling and grammar errors
1 parent 51fac97 commit 1b47cae

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

examples/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Here is the list of examples in alphabetical order by filename along with a brie
1111
- [arg_decorators.py](https://github.com/python-cmd2/cmd2/blob/master/examples/arg_decorators.py)
1212
- Demonstrates how to use the `cmd2.with_argparser` decorator to specify command arguments using [argparse](https://docs.python.org/3/library/argparse.html)
1313
- [arg_print.py](https://github.com/python-cmd2/cmd2/blob/master/examples/arg_print.py)
14-
- Demonstrates how arguments and options get parsed and passed to commands and shows how shortcust work
14+
- Demonstrates how arguments and options get parsed and passed to commands and shows how shortcuts work
1515
- [argparse_completion.py](https://github.com/python-cmd2/cmd2/blob/master/examples/argparse_completion.py)
1616
- Shows how to integrate tab-completion with argparse-based commands
1717
- [async_printing.py](https://github.com/python-cmd2/cmd2/blob/master/examples/async_printing.py)
@@ -27,7 +27,7 @@ Here is the list of examples in alphabetical order by filename along with a brie
2727
- [custom_parser.py](https://github.com/python-cmd2/cmd2/blob/master/examples/custom_parser.py)
2828
- Demonstrates how to create your own customer `Cmd2ArgumentParser`; used by the `override_parser.py` example
2929
- [decorator_example.py](https://github.com/python-cmd2/cmd2/blob/master/examples/decorator_example.py)
30-
- Shows how to use cmd2's various argparse decotrators to processes command-line arguments
30+
- Shows how to use cmd2's various argparse decorators to processes command-line arguments
3131
- [default_categories.py](https://github.com/python-cmd2/cmd2/blob/master/examples/default_categories.py)
3232
- Demonstrates usage of `@with_default_category` decorator to group and categorize commands and `CommandSet` use
3333
- [dynamic_commands.py](https://github.com/python-cmd2/cmd2/blob/master/examples/dynamic_commands.py)
@@ -59,7 +59,7 @@ Here is the list of examples in alphabetical order by filename along with a brie
5959
- [modular_commands_main.py](https://github.com/python-cmd2/cmd2/blob/master/examples/modular_commands_main.py)
6060
- Complex example demonstrating a variety of methods to load `CommandSets` using a mix of command decorators
6161
- [modular_subcommands.py](https://github.com/python-cmd2/cmd2/blob/master/examples/modular_subcommands.py)
62-
- Shows how to use dynamically add and remove subcommands at runtime using `CommandSets`
62+
- Shows how to dynamically add and remove subcommands at runtime using `CommandSets`
6363
- [override-parser.py](https://github.com/python-cmd2/cmd2/blob/master/examples/override_parser.py)
6464
- Shows how to override cmd2's default `Cmd2ArgumentParser` with your own customer parser class
6565
- [paged_output.py](https://github.com/python-cmd2/cmd2/blob/master/examples/paged_output.py)
@@ -69,7 +69,7 @@ Here is the list of examples in alphabetical order by filename along with a brie
6969
- [pirate.py](https://github.com/python-cmd2/cmd2/blob/master/examples/pirate.py)
7070
- Demonstrates many features including colorized output, multiline commands, shorcuts, defaulting to shell, etc.
7171
- [python_scripting.py](https://github.com/python-cmd2/cmd2/blob/master/examples/python_scripting.py)
72-
- Shows how cmd2's built-in `run_pyscript` command and provide advanced Python scripting of cmd2 applications
72+
- Shows how cmd2's built-in `run_pyscript` command can provide advanced Python scripting of cmd2 applications
7373
- [read_input.py](https://github.com/python-cmd2/cmd2/blob/master/examples/read_input.py)
7474
- Demonstrates the various ways to call `cmd2.Cmd.read_input()` for input history and tab completion
7575
- [remove_builtin_commands.py](https://github.com/python-cmd2/cmd2/blob/master/examples/remove_builtin_commands.py)

examples/tmux_launch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# See the tmux Wiki for info on how to use it: https://github.com/tmux/tmux/wiki.
99
# To shift focus between different windows in tmux use Ctrl-b followed by l (lowercase "L").
1010
#
11-
# NOTE: IF you have byobu installed, it is a wrapper around tmux and will likely run instead of tmux.
11+
# NOTE: If you have byobu installed, it is a wrapper around tmux and will likely run instead of tmux.
1212
# For info on how to use Byobu, see: https://www.byobu.org/
1313
# To shift focus between windows/tabs in byobu, simply hit F3.
1414

examples/tmux_split.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# If the second isn't provided, then the user's default shell is launched for this.
66
#
77
# byobu must be installed for this script to work and you can install it using your
8-
# operating system package manager. or info on how to use Byobu, see: https://www.byobu.org/
8+
# operating system package manager. For info on how to use Byobu, see: https://www.byobu.org/
99
#
1010
# To shift focus between tabs in byobu, just hit F3.
1111

0 commit comments

Comments
 (0)