@@ -267,9 +267,9 @@ persist between invocations of your application, you'll need to do a little work
267267
268268Users can access command history using two methods:
269269
270- - the [ readline] ( https://docs.python.org/3/library/readline.html ) library which provides a Python
270+ - The [ readline] ( https://docs.python.org/3/library/readline.html ) library which provides a Python
271271 interface to the [ GNU readline library] ( https://en.wikipedia.org/wiki/GNU_Readline )
272- - the ` history ` command which is built-in to ` cmd2 `
272+ - The ` history ` command which is built-in to ` cmd2 `
273273
274274From the prompt in a ` cmd2 ` -based application, you can press ` Control-p ` to move to the previously
275275entered command, and ` Control-n ` to move to the next command. You can also search through the
@@ -280,10 +280,10 @@ details, including all the available commands, and instructions for customizing
280280The ` history ` command allows a user to view the command history, and select commands from history by
281281number, range, string search, or regular expression. With the selected commands, users can:
282282
283- - re -run the commands
284- - edit the selected commands in a text editor, and run them after the text editor exits
285- - save the commands to a file
286- - run the commands, saving both the commands and their output to a file
283+ - Re -run the commands
284+ - Edit the selected commands in a text editor, and run them after the text editor exits
285+ - Save the commands to a file
286+ - Run the commands, saving both the commands and their output to a file
287287
288288Learn more about the ` history ` command by typing ` history -h ` at any ` cmd2 ` input prompt, or by
289289exploring [ Command History For Users] ( ../features/history.md#for-users ) .
0 commit comments