summaryrefslogtreecommitdiff
path: root/ports/esp8266/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/esp8266/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/esp8266/help.c')
-rw-r--r--ports/esp8266/help.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ports/esp8266/help.c b/ports/esp8266/help.c
index a755a10a7..a9cb27bad 100644
--- a/ports/esp8266/help.c
+++ b/ports/esp8266/help.c
@@ -29,7 +29,8 @@
const char esp_help_text[] =
"Welcome to MicroPython!\n"
"\n"
- "For online docs please visit http://docs.micropython.org/en/latest/esp8266/ .\n"
+ "For online docs please visit http://docs.micropython.org/\n"
+ "\n"
"For diagnostic information to include in bug reports execute 'import port_diag'.\n"
"\n"
"Basic WiFi configuration:\n"