Skip to content

Commit 692fbbd

Browse files
committed
Fixed a couple typos find by gemini-cli review
1 parent a43764c commit 692fbbd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/features/scripting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
152152
scripter 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
204204
app('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

362362
When 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

365365
The following fictional application has two commands: `build` and `status`. We can pretend that the
366366
build action happens somewhere else in the world at a REST API endpoint and has significant

docs/features/shortcuts_aliases_macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
1515
and then add more shortcuts to it by updating it with a dictionary of additional shortcuts in the
1616
format `{'shortcut': 'command_name'}` where you omit `do_` from the command name:
1717

0 commit comments

Comments
 (0)