Skip to content

Commit 649bc9f

Browse files
authored
Merge pull request #73 from slaff/fix/spelling
Fixed small spelling mistakes.
2 parents bbd2fd6 + 570d172 commit 649bc9f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Adafruit_BusIO_Register.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Adafruit_BusIO_Register {
8080
Adafruit_BusIO_SPIRegType _spiregtype;
8181
uint16_t _address;
8282
uint8_t _width, _addrwidth, _byteorder;
83-
uint8_t _buffer[4]; // we wont support anything larger than uint32 for
83+
uint8_t _buffer[4]; // we won't support anything larger than uint32 for
8484
// non-buffered read
8585
uint32_t _cached = 0;
8686
};

Adafruit_SPIDevice.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//#define DEBUG_SERIAL Serial
77

88
/*!
9-
* @brief Create an SPI device with the given CS pin and settins
9+
* @brief Create an SPI device with the given CS pin and settings
1010
* @param cspin The arduino pin number to use for chip select
1111
* @param freq The SPI clock frequency to use, defaults to 1MHz
1212
* @param dataOrder The SPI data order to use for bits within each byte,
@@ -28,7 +28,7 @@ Adafruit_SPIDevice::Adafruit_SPIDevice(int8_t cspin, uint32_t freq,
2828
}
2929

3030
/*!
31-
* @brief Create an SPI device with the given CS pin and settins
31+
* @brief Create an SPI device with the given CS pin and settings
3232
* @param cspin The arduino pin number to use for chip select
3333
* @param sckpin The arduino pin number to use for SCK
3434
* @param misopin The arduino pin number to use for MISO, set to -1 if not

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Adafruit Bus IO Library [![Build Status](https://github.com/adafruit/Adafruit_BusIO/workflows/Arduino%20Library%20CI/badge.svg)](https://github.com/adafruit/Adafruit_BusIO/actions)
22

33

4-
This is a helper libary to abstract away I2C & SPI transactions and registers
4+
This is a helper library to abstract away I2C & SPI transactions and registers
55

66
Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!
77

examples/spi_register_bits/spi_register_bits.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ void setup() {
139139

140140
void loop() {
141141
#if (defined( MAX31865_READY_PIN ) && (MAX31865_1_READY_PIN != -1))
142-
// Is converstion ready?
142+
// Is conversion ready?
143143
if (!digitalRead(MAX31865_READY_PIN))
144144
#else
145145
// Warant conversion is ready.

0 commit comments

Comments
 (0)