File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ flowchart LR
151151`cmd2` out of the box allows scripters to take advantage of all exposed `do_* ` commands. As a
152152scripter one can easily interact with the application via `stdout` and `stderr` .
153153
154- As a baseline lets start off with the the following `cmd2` application called `FirstApp`
154+ As a baseline let ' s start off with the the following `cmd2` application called `FirstApp`
155155
156156```py
157157# !/usr/bin/env python
@@ -198,7 +198,7 @@ if __name__ == '__main__':
198198 sys.exit(c.cmdloop())
199199```
200200
201- Lets start off on the wrong foot:
201+ Let ' s start off on the wrong foot:
202202
203203```py
204204app(' speak'
@@ -360,7 +360,7 @@ potentially lead to violation of the
360360[open_closed_principle](https:// en.wikipedia.org/ wiki/ Open% E2% 80 % 93closed_principle ).
361361
362362When possible, a frozen dataclass is a lightweight solution perfectly suited for data manipulation.
363- Lets dive into an example.
363+ Let ' s dive into an example.
364364
365365The following fictional application has two commands: `build` and `status` . We can pretend that the
366366build action happens somewhere else in the world at a REST API endpoint and has significant
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ default, the following shortcuts are defined:
1111- ** ` @ ` ** - run script file
1212- ** ` @@ ` ** - run script file; filename is relative to current script location
1313
14- To define more shortcuts, stat with the [ cmd2.DEFAULT_SHORTCUTS] [ ] constant which is a dictionary
14+ To define more shortcuts, start with the [ cmd2.DEFAULT_SHORTCUTS] [ ] constant which is a dictionary
1515and then add more shortcuts to it by updating it with a dictionary of additional shortcuts in the
1616format ` {'shortcut': 'command_name'} ` where you omit ` do_ ` from the command name:
1717
You can’t perform that action at this time.
0 commit comments