summaryrefslogtreecommitdiff
path: root/apps/system
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-02-03 10:56:52 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-02-03 10:56:52 -0600
commit826d49feea7c16c10de24ca27a9a164965e16bbe (patch)
tree2707b32e4dabb21419d2c367b63b5bf008150676 /apps/system
parent4af5d2b78109fbc2e0efd95e656d0add09379dad (diff)
downloadnuttx-826d49feea7c16c10de24ca27a9a164965e16bbe.tar.gz
nuttx-826d49feea7c16c10de24ca27a9a164965e16bbe.tar.bz2
nuttx-826d49feea7c16c10de24ca27a9a164965e16bbe.zip
Update documentation, mostly related to the command line editor
Diffstat (limited to 'apps/system')
-rw-r--r--apps/system/cle/cle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/system/cle/cle.c b/apps/system/cle/cle.c
index e0b15151e..02c5efbd6 100644
--- a/apps/system/cle/cle.c
+++ b/apps/system/cle/cle.c
@@ -142,7 +142,7 @@ enum cle_key_e
{
KEY_BEGINLINE = CTRL('A'), /* Move cursor to start of current line */
KEY_LEFT = CTRL('B'), /* Move left one character */
- KEY_DEL = CTRL('D'), /* Delete a single character at the cursor position*/
+ KEY_DEL = CTRL('D'), /* Delete a single character at the cursor position */
KEY_ENDLINE = CTRL('E'), /* Move cursor to end of current line */
KEY_RIGHT = CTRL('F'), /* Move right one character */
KEY_DELLEFT = CTRL('H'), /* Delete character, left (backspace) */