From 4efed58df157a88c30c0ae7307ea2bb5585a5f23 Mon Sep 17 00:00:00 2001 From: danicampora Date: Thu, 22 Oct 2015 16:22:02 +0200 Subject: [PATCH] docs: Fix typos on wipy docs. --- docs/library/network.rst | 4 ++-- docs/wipy/tutorial/repl.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/library/network.rst b/docs/library/network.rst index 8522ee2948..d4725055a8 100644 --- a/docs/library/network.rst +++ b/docs/library/network.rst @@ -63,7 +63,7 @@ For example:: .. method:: server.isrunning() - Returns ``True`` is the server is running, ``False`` otherwise. + Returns ``True`` if the server is running, ``False`` otherwise. .. only:: port_pyboard @@ -299,7 +299,7 @@ For example:: class WLAN ========== - This class provides a driver for WiFi network processor in the WiPy. Example usage:: + This class provides a driver for the WiFi network processor in the WiPy. Example usage:: import network import time diff --git a/docs/wipy/tutorial/repl.rst b/docs/wipy/tutorial/repl.rst index 95aae54c3d..56c434f5ab 100644 --- a/docs/wipy/tutorial/repl.rst +++ b/docs/wipy/tutorial/repl.rst @@ -14,7 +14,7 @@ do:: >>> from machine import UART >>> import os >>> uart = UART(0, 115200) - >>> o.dupterm(uart) + >>> os.dupterm(uart) Place this piece of code inside your `boot.py` so that it's done automatically after reset.