Skip to content

Commit 570d172

Browse files
Fixed small spelling mistakes.
1 parent da6809b commit 570d172

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
@@ -79,7 +79,7 @@ class Adafruit_BusIO_Register {
7979
Adafruit_BusIO_SPIRegType _spiregtype;
8080
uint16_t _address;
8181
uint8_t _width, _addrwidth, _byteorder;
82-
uint8_t _buffer[4]; // we wont support anything larger than uint32 for
82+
uint8_t _buffer[4]; // we won't support anything larger than uint32 for
8383
// non-buffered read
8484
uint32_t _cached = 0;
8585
};

Adafruit_SPIDevice.cpp

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

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

3131
/*!
32-
* @brief Create an SPI device with the given CS pin and settins
32+
* @brief Create an SPI device with the given CS pin and settings
3333
* @param cspin The arduino pin number to use for chip select
3434
* @param sckpin The arduino pin number to use for SCK
3535
* @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)