docs: Fix typos on wipy docs.
This commit is contained in:
parent
0212dc65b7
commit
4efed58df1
|
@ -63,7 +63,7 @@ For example::
|
||||||
|
|
||||||
.. method:: server.isrunning()
|
.. method:: server.isrunning()
|
||||||
|
|
||||||
Returns ``True`` is the server is running, ``False`` otherwise.
|
Returns ``True`` if the server is running, ``False`` otherwise.
|
||||||
|
|
||||||
.. only:: port_pyboard
|
.. only:: port_pyboard
|
||||||
|
|
||||||
|
@ -299,7 +299,7 @@ For example::
|
||||||
class WLAN
|
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 network
|
||||||
import time
|
import time
|
||||||
|
|
|
@ -14,7 +14,7 @@ do::
|
||||||
>>> from machine import UART
|
>>> from machine import UART
|
||||||
>>> import os
|
>>> import os
|
||||||
>>> uart = UART(0, 115200)
|
>>> 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
|
Place this piece of code inside your `boot.py` so that it's done automatically after
|
||||||
reset.
|
reset.
|
||||||
|
|
Loading…
Reference in New Issue