summaryrefslogtreecommitdiff
path: root/ports/esp32/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/esp32/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/esp32/help.c')
-rw-r--r--ports/esp32/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/help.c b/ports/esp32/help.c
index 2336d97f8..2351d7dc7 100644
--- a/ports/esp32/help.c
+++ b/ports/esp32/help.c
@@ -31,7 +31,7 @@
const char esp32_help_text[] =
"Welcome to MicroPython on the ESP32!\n"
"\n"
- "For generic online docs please visit http://docs.micropython.org/\n"
+ "For online docs please visit http://docs.micropython.org/\n"
"\n"
"For access to the hardware use the 'machine' module:\n"
"\n"