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 | |
parent | af9046193148084f008501434e4c9f49fedc053f (diff) |
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')
-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 ac7eec132..7a4ea7f7f 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 ------- |