summaryrefslogtreecommitdiff
path: root/ports/zephyr/help.c
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2023-05-31 16:37:23 +1000
committerDamien George <damien@micropython.org>2023-06-02 11:48:46 +1000
commit1d4b4f0ce27a44be132971ed690189e470af28ce (patch)
tree87beaacb735d9434b1866a1e9efc16ef1ca8877b /ports/zephyr/help.c
parent7a17596e1aa8b10ea3e1cce42d73b46f9bf06078 (diff)
ports: Standardise docs link in help text.
Updates all `help()` output to use the phrase: `For online docs please visit http://docs.micropython.org/` Some ports previously used different wording, some pointed to the wrong link. Also make all ports use `help.c` for consistency. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'ports/zephyr/help.c')
-rw-r--r--ports/zephyr/help.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/zephyr/help.c b/ports/zephyr/help.c
index 4ee674b9d..0b977fa03 100644
--- a/ports/zephyr/help.c
+++ b/ports/zephyr/help.c
@@ -29,6 +29,8 @@
const char zephyr_help_text[] =
"Welcome to MicroPython!\n"
"\n"
+ "For online docs please visit http://docs.micropython.org/\n"
+ "\n"
"Control commands:\n"
" CTRL-A -- on a blank line, enter raw REPL mode\n"
" CTRL-B -- on a blank line, enter normal REPL mode\n"