Skip to content

Commit a43764c

Browse files
committed
Fix a couple typos found by gemini-cli code review
1 parent 3224336 commit a43764c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/doc_conventions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ When using `mkdocstrings`, it must be preceded by a blank line before and after,
7575

7676
### Links to API Reference
7777

78-
To reference a class, method, or function, do the following use block quotes around it followed by
79-
empty block quotes. So to reference `cmd2.Cmd`, you using `[cmd2.Cmd][]`.
78+
To reference a class, method, or function, use block quotes around the name of the full namespace
79+
path for it followed by empty block quotes. So to reference `cmd2.Cmd`, you use `[cmd2.Cmd][]`.
8080

8181
If you want to change the name to use something shorter than the full namespace resolution you can
8282
put the full path in the 2nd set of block quotes instead of leaving it empty and put the shorter

docs/features/argument_processing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def settings_ns_provider(self) -> argparse.Namespace:
277277
return ns
278278
```
279279

280-
To use this function with the `@2ith_argparser` decorator, do the following:
280+
To use this function with the `@with_argparser` decorator, do the following:
281281

282282
```py
283283
@with_argparser(my_parser, ns_provider=settings_ns_provider)

0 commit comments

Comments
 (0)