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

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