summaryrefslogtreecommitdiffstatshomepage
path: root/drivers/sdcard/sdcard.py
diff options
context:
space:
mode:
authorMike Causer <mcauser@gmail.com>2016-12-21 13:48:44 +1100
committerDamien George <damien.p.george@gmail.com>2017-01-18 15:31:05 +1100
commitc5310ee5b545316d7b8770343908c19f1ff1cd0d (patch)
tree40dc785fa90fe983d40595bf1606f36fbac49455 /drivers/sdcard/sdcard.py
parenta79f6676c3381d56f2085bda23cf75ba129db9c6 (diff)
downloadmicropython-c5310ee5b545316d7b8770343908c19f1ff1cd0d.tar.gz
micropython-c5310ee5b545316d7b8770343908c19f1ff1cd0d.zip
drivers: Fix some minor spelling mistakes.
respones -> response succeses -> successes
Diffstat (limited to 'drivers/sdcard/sdcard.py')
-rw-r--r--drivers/sdcard/sdcard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sdcard/sdcard.py b/drivers/sdcard/sdcard.py
index 191630aebd..cbf4474158 100644
--- a/drivers/sdcard/sdcard.py
+++ b/drivers/sdcard/sdcard.py
@@ -142,7 +142,7 @@ class SDCard:
buf[5] = crc
self.spi.write(buf)
- # wait for the repsonse (response[7] == 0)
+ # wait for the response (response[7] == 0)
for i in range(_CMD_TIMEOUT):
response = self.spi.read(1, 0xff)[0]
if not (response & 0x80):