diff options
author | Mike Causer <mcauser@gmail.com> | 2021-04-30 16:53:36 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-05-04 22:58:00 +1000 |
commit | 31ac410a4fbf18b38b6f4557045959140026680e (patch) | |
tree | af61c304a48aa064205c185e5043e80ac5543f45 /docs/esp8266 | |
parent | 6e776a671061130d86a300fcd72173d9b93f521a (diff) | |
download | micropython-31ac410a4fbf18b38b6f4557045959140026680e.tar.gz micropython-31ac410a4fbf18b38b6f4557045959140026680e.zip |
docs: Fix some spelling mistakes.
Diffstat (limited to 'docs/esp8266')
-rw-r--r-- | docs/esp8266/quickref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/esp8266/quickref.rst b/docs/esp8266/quickref.rst index a478b66581..b9a46ab112 100644 --- a/docs/esp8266/quickref.rst +++ b/docs/esp8266/quickref.rst @@ -58,7 +58,7 @@ The :mod:`network` module:: wlan.scan() # scan for access points wlan.isconnected() # check if the station is connected to an AP wlan.connect('essid', 'password') # connect to an AP - wlan.config('mac') # get the interface's MAC adddress + wlan.config('mac') # get the interface's MAC address wlan.ifconfig() # get the interface's IP/netmask/gw/DNS addresses ap = network.WLAN(network.AP_IF) # create access-point interface |