diff options
author | Mike Causer <mcauser@gmail.com> | 2019-02-13 12:29:01 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-10-16 14:08:28 +1100 |
commit | a2c4cb484d6018a65dabd921c509fc12b71a088b (patch) | |
tree | f83725e5b9ff8390ff8a5ebc8c64926acb08db0a /docs/esp8266/quickref.rst | |
parent | 5a8f392f09e3826ff2a1f4330700198e9c0d42cc (diff) |
docs: Fix spelling in various parts of the docs.
Diffstat (limited to 'docs/esp8266/quickref.rst')
-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 a50e3dd6b..a19766504 100644 --- a/docs/esp8266/quickref.rst +++ b/docs/esp8266/quickref.rst @@ -188,7 +188,7 @@ class:: spi.init(baudrate=200000) # set the baudrate spi.read(10) # read 10 bytes on MISO - spi.read(10, 0xff) # read 10 bytes while outputing 0xff on MOSI + spi.read(10, 0xff) # read 10 bytes while outputting 0xff on MOSI buf = bytearray(50) # create a buffer spi.readinto(buf) # read into the given buffer (reads 50 bytes in this case) |