Skip to content

Commit 7ec7ad6

Browse files
committed
Correct typos in comments
1 parent 9d0961a commit 7ec7ad6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/ts_wire/ts_wire.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ void lsm6dsox_thread_func()
8080
{
8181
/* Sleep between 5 and 500 ms */
8282
rtos::ThisThread::sleep_for(rtos::Kernel::Clock::duration_u32(random(5,500)));
83-
/* Try to read some data from the BMP3888. */
83+
/* Try to read some data from the LSM6DSOX. */
8484
byte const who_am_i = lsm6dsox_read_reg(LSM6DSOX_WHO_AM_I_REG);
8585
/* Print thread id and chip id value to serial. */
8686
char msg[64] = {0};

src/spi/SpiDispatcher.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ void SpiDispatcher::begin()
8181
{
8282
SPI.begin();
8383
_thread.start(mbed::callback(this, &SpiDispatcher::threadFunc)); /* TODO: Check return code */
84-
/* Is is necessary to wait until the SpiDispatcher::threadFunc()
84+
/* It is necessary to wait until the SpiDispatcher::threadFunc()
8585
* has started, otherwise other threads might trigger IO requests
8686
* before this thread is actually running.
8787
*/

src/wire/WireDispatcher.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ void WireDispatcher::begin()
8181
{
8282
Wire.begin();
8383
_thread.start(mbed::callback(this, &WireDispatcher::threadFunc)); /* TODO: Check return code */
84-
/* Is is necessary to wait until the WireDispatcher::threadFunc()
84+
/* It is necessary to wait until the WireDispatcher::threadFunc()
8585
* has started, otherwise other threads might trigger IO requests
8686
* before this thread is actually running.
8787
*/

0 commit comments

Comments
 (0)