Skip to content

Commit 779aa0e

Browse files
authored
Merge pull request #1032 from klieret/master
Fix wrong superclass in doc
2 parents 03c65c6 + 9ee1d83 commit 779aa0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/features/shortcuts_aliases_macros.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ defined:
2424
To define more shortcuts, update the dict ``App.shortcuts`` with the
2525
{'shortcut': 'command_name'} (omit ``do_``)::
2626

27-
class App(Cmd2):
27+
class App(Cmd):
2828
def __init__(self):
2929
shortcuts = dict(cmd2.DEFAULT_SHORTCUTS)
3030
shortcuts.update({'*': 'sneeze', '~': 'squirm'})

0 commit comments

Comments
 (0)