Skip to content

Commit 0ada6bb

Browse files
committed
fix typos
1 parent d2892d0 commit 0ada6bb

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ uint8_t const desc_hid_report[] =
135135
## 0.6.0 - 2019.08.05
136136

137137
- Added webUSB support with 2 example: webusb-serial, webusb-rgb
138-
- Alligned mouse examples, added newer hid in/out example from main repo, added new composite example for ramdisk and hid in/out. PR #19 thanks to @PTS93
138+
- Aligned mouse examples, added newer hid in/out example from main repo, added new composite example for ramdisk and hid in/out. PR #19 thanks to @PTS93
139139

140140
## 0.5.0 - 2019.07.17
141141

examples/DualRole/msc_file_explorer/msc_file_explorer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Adafruit_USBH_MSC_BlockDevice msc_block_dev;
4646
// file system object from SdFat
4747
FatVolume fatfs;
4848

49-
// if file system is succesfully mounted on usb block device
49+
// if file system is successfully mounted on usb block device
5050
bool is_mounted = false;
5151

5252
//--------------------------------------------------------------------+

examples/HID/hid_generic_inout/hid_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
while True:
1515
# Get input from console and encode to UTF8 for array of chars.
1616
# hid generic inout is single report therefore by HIDAPI requirement
17-
# it must be preceeded with 0x00 as dummy reportID
17+
# it must be preceded with 0x00 as dummy reportID
1818
str_out = b'\x00'
1919
str_out += input("Send text to HID Device : ").encode('utf-8')
2020
dev.write(str_out)

examples/MassStorage/msc_esp32_file_browser/msc_esp32_file_browser.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ void setup()
197197
}
198198

199199
//--------------------------------------------------------------------+
200-
// Handle requets
200+
// Handle requests
201201
//--------------------------------------------------------------------+
202202

203203
//format bytes

src/arduino/Adafruit_USBD_CDC.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Adafruit_USBD_CDC : public Stream, public Adafruit_USBD_Interface {
4545

4646
static uint8_t getInstanceCount(void);
4747

48-
// fron Adafruit_USBD_Interface
48+
// from Adafruit_USBD_Interface
4949
virtual uint16_t getInterfaceDescriptor(uint8_t itfnum, uint8_t *buf,
5050
uint16_t bufsize);
5151

src/arduino/midi/Adafruit_USBD_MIDI.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,12 @@ size_t Adafruit_USBD_MIDI::write(uint8_t b) {
162162
int Adafruit_USBD_MIDI::available(void) { return tud_midi_available(); }
163163

164164
int Adafruit_USBD_MIDI::peek(void) {
165-
// MIDI Library doen't use peek
165+
// MIDI Library does not use peek
166166
return -1;
167167
}
168168

169169
void Adafruit_USBD_MIDI::flush(void) {
170-
// MIDI Library doen't use flush
170+
// MIDI Library does not use flush
171171
}
172172

173173
bool Adafruit_USBD_MIDI::writePacket(const uint8_t packet[4]) {

0 commit comments

Comments
 (0)