From cb88815dd911f3e18c5ab0640c0331ce2f0fb814 Mon Sep 17 00:00:00 2001 From: Gino D Date: Sun, 8 Jan 2023 03:06:07 +0100 Subject: [PATCH] Fixed wording... --- src/picowatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/picowatch.py b/src/picowatch.py index 03baeb2..c5f9aa3 100644 --- a/src/picowatch.py +++ b/src/picowatch.py @@ -910,13 +910,13 @@ while True: tab.line('ctrl + D', 'exit', '', 'Exit Picowatch Terminal') tab.line('ctrl + Z', 'exit', '', 'Same as ctrl + D, Exit Picowatch Terminal') tab.line('uname', 'os', '', 'Pyboard name and version') - tab.line('edit', 'vim', ' []', 'Edit specified file from the PC (vim or vscode is required)') tab.line('scan', 'ls', '[] (default: /)', 'List information about the file(s) on the Pyboard') + tab.line('edit', 'vim', ' []', 'Edit specified file from the PC (vim or vscode is required)') tab.line('source', 'cat', '', 'Concatenate source code to standard output') tab.line('delete', 'rm', '', 'Delete file or directory contents on the Pyboard') tab.line('upload', 'put', '', 'Upload file or directory contents from the PC to the Pyboard') tab.line('download', 'get', '', 'Download file or directory contents from the Pyboard to the PC. Warning: this may cause file corruption.') - tab.line('compare', 'diff', ' [use vim]', 'Compare source code from PC with source code from the Pyboard (vim or vscode is required)') + tab.line('compare', 'diff', ' []', 'Compare source code from PC with source code from the Pyboard (vim or vscode is required)') tab.line('compile', 'mpy', '', 'Compile source file to mpy file') tab.line('status', 'mod', '', 'Show the working tree status (Git is required)') tab.line('commit', 'sync', '[] (default: "")', 'Synchronize Pyboard along with associated commit(s) (Git is required)')