diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-31 17:51:32 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-31 17:51:32 -0400 |
commit | accb7d78675fffe9aa031fa073aa950c8241ee1c (patch) | |
tree | 04764919c82a1336cedb82eda7941576946eb16e /README.md | |
parent | 9b13916a6451686cfb9e3739a1326dea7f02faa5 (diff) | |
download | cmd2-git-accb7d78675fffe9aa031fa073aa950c8241ee1c.tar.gz |
Fixed typo
Diffstat (limited to 'README.md')
-rwxr-xr-x | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -188,7 +188,7 @@ Instructions for implementing each feature follow. Any command accepts multi-line input when its name is listed the `multiline_commands` optional argument to `cmd2.Cmd.__init`. The program will keep expecting input until a line ends with any of the characters listed in the - `terminators` optional argument to `cmd2.Cmd.__init__()` . The default terminators are `;` and `/n` (empty newline). + `terminators` optional argument to `cmd2.Cmd.__init__()` . The default terminators are `;` and `\n` (empty newline). - Special-character shortcut commands (beyond cmd's "@" and "!") |