docs: Fix some minor spelling mistakes.

paramter -> parameter
send a receive -> send and receive
repsonse -> response
particualr -> particular
constructore -> constructor
This commit is contained in:
Mike Causer
2016-12-21 13:48:20 +11:00
committed by Damien George
parent af90461931
commit a79f6676c3
3 changed files with 5 additions and 5 deletions

View File

@@ -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
-------