diff options
author | Mike Causer <mcauser@gmail.com> | 2016-12-21 13:48:20 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-18 15:30:31 +1100 |
commit | a79f6676c3381d56f2085bda23cf75ba129db9c6 (patch) | |
tree | 777eaa160ab4bd1922f52dcd223183d2d2cc61b8 /docs/wipy/quickref.rst | |
parent | af9046193148084f008501434e4c9f49fedc053f (diff) | |
download | micropython-a79f6676c3381d56f2085bda23cf75ba129db9c6.tar.gz micropython-a79f6676c3381d56f2085bda23cf75ba129db9c6.zip |
docs: Fix some minor spelling mistakes.
paramter -> parameter
send a receive -> send and receive
repsonse -> response
particualr -> particular
constructore -> constructor
Diffstat (limited to 'docs/wipy/quickref.rst')
-rw-r--r-- | docs/wipy/quickref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/wipy/quickref.rst b/docs/wipy/quickref.rst index ac7eec1328..7a4ea7f7f3 100644 --- a/docs/wipy/quickref.rst +++ b/docs/wipy/quickref.rst @@ -102,7 +102,7 @@ See :ref:`machine.SPI <machine.SPI>`. :: spi.write('hello') spi.read(5) # receive 5 bytes on the bus rbuf = bytearray(5) - spi.write_readinto('hello', rbuf) # send a receive 5 bytes + spi.write_readinto('hello', rbuf) # send and receive 5 bytes I2C bus ------- |