summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-10-01 14:08:02 +1000
committerDamien George <damien.p.george@gmail.com>2018-10-01 14:08:02 +1000
commit86819a52fec0e8337ac152564eec092984859884 (patch)
treea9484ad502081b9bfaeebbd44acc0e3716019df2
parentd1adfee2510d1e9fda8141e00ca0d96d88da9605 (diff)
docs/wipy: Fix links to network.Server, and markup for boot.py.
-rw-r--r--docs/wipy/general.rst4
-rw-r--r--docs/wipy/quickref.rst2
-rw-r--r--docs/wipy/tutorial/repl.rst2
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/wipy/general.rst b/docs/wipy/general.rst
index aa195892b..4dfab9c05 100644
--- a/docs/wipy/general.rst
+++ b/docs/wipy/general.rst
@@ -40,7 +40,7 @@ Telnet REPL
Linux stock telnet works like a charm (also on OSX), but other tools like putty
work quite well too. The default credentials are: **user:** ``micro``, **password:** ``python``.
-See :ref:`network.server <network.server>` for info on how to change the defaults.
+See :class:`network.Server` for info on how to change the defaults.
For instance, on a linux shell (when connected to the WiPy in AP mode)::
$ telnet 192.168.1.1
@@ -62,7 +62,7 @@ Open your FTP client of choice and connect to:
**url:** ``ftp://192.168.1.1``, **user:** ``micro``, **password:** ``python``
-See :ref:`network.server <network.server>` for info on how to change the defaults.
+See :class:`network.Server` for info on how to change the defaults.
The recommended clients are: Linux stock FTP (also in OSX), Filezilla and FireFTP.
For example, on a linux shell::
diff --git a/docs/wipy/quickref.rst b/docs/wipy/quickref.rst
index 9e13dfc2d..1f34bdaa9 100644
--- a/docs/wipy/quickref.rst
+++ b/docs/wipy/quickref.rst
@@ -205,7 +205,7 @@ See :ref:`network.WLAN <network.WLAN>` and :mod:`machine`. ::
Telnet and FTP server
---------------------
-See :ref:`network.Server <network.Server>` ::
+See :class:`network.Server` ::
from network import Server
diff --git a/docs/wipy/tutorial/repl.rst b/docs/wipy/tutorial/repl.rst
index e7b51f9c5..e25e0472c 100644
--- a/docs/wipy/tutorial/repl.rst
+++ b/docs/wipy/tutorial/repl.rst
@@ -18,7 +18,7 @@ do::
>>> uart = UART(0, 115200)
>>> os.dupterm(uart)
-Place this piece of code inside your `boot.py` so that it's done automatically after
+Place this piece of code inside your ``boot.py`` so that it's done automatically after
reset.
Windows