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/pyboard | |
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/pyboard')
-rw-r--r-- | docs/pyboard/quickref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pyboard/quickref.rst b/docs/pyboard/quickref.rst index 5f1a3a6e6..5690dddb0 100644 --- a/docs/pyboard/quickref.rst +++ b/docs/pyboard/quickref.rst @@ -152,7 +152,7 @@ See :ref:`pyb.SPI <pyb.SPI>`. :: spi = SPI(1, SPI.MASTER, baudrate=200000, polarity=1, phase=0) spi.send('hello') spi.recv(5) # receive 5 bytes on the bus - spi.send_recv('hello') # send a receive 5 bytes + spi.send_recv('hello') # send and receive 5 bytes I2C bus ------- |