Skip to content

Commit de7362e

Browse files
committed
Fix typos in documentation
1 parent b079a0e commit de7362e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

examples/Blocks/data_writer.inot

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
/*
33
* An 'int' SINK with a size of '0'. This kind of SINK has no buffer so the reading thread
4-
* will block until the writing thread has written something, or viceversa.
4+
* will block until the writing thread has written something, or vice versa.
55
*/
66
SINK(in, int, 0)
77

@@ -10,7 +10,7 @@ void setup() {
1010
}
1111

1212
void loop() {
13-
// Read an 'int' from the SINK and discards it. Since there is basically no delay in the loop
13+
// Read an 'int' from the SINK and discard it. Since there is basically no delay in the loop
1414
// this call will surely block until something comes from the connected SOURCE. In this case
1515
// the pace is dictated by the SOURCE that sends data every 100 ms.
1616
in.read();

examples/SharedResources/SharedVariables.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// The preprocessor should enforce that all variables belonging here are declared Shared
2-
// There's no risk to spill other variables around since they are all private memeber of the automatic class
2+
// There's no risk to spill other variables around since they are all private members of the automatic class
33

44
struct i2cScanResults {
55
uint8_t address[128];

examples/SharedResourcesVariousLibraries/SharedVariables.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// The preprocessor should enforce that all variables belonging here are declared Shared
2-
// There's no risk to spill other variables around since they are all private memeber of the automatic class
2+
// There's no risk to spill other variables around since they are all private members of the automatic class
33

44
struct i2cScanResults {
55
uint8_t address[128];

examples/i2c_concurrent/SharedVariables.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// The preprocessor should enforce that all variables belonging here are declared Shared
2-
// There's no risk to spill other variables around since they are all private memeber of the automatic class
2+
// There's no risk to spill other variables around since they are all private members of the automatic class
33

44
struct i2cScanResults {
55
uint8_t address[128];

library.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name=Arduino_Threads
22
version=0.0.1
33
author=Arduino
44
maintainer=Arduino <[email protected]>
5-
sentence=Easy multi-threading for your mbed based Arduino.
6-
paragraph=This library allows an easy access to the multi-threading capability inherent in all mbed based Arduino boards.
5+
sentence=Easy multi-threading for your Mbed OS-based Arduino.
6+
paragraph=This library allows an easy access to the multi-threading capability inherent in all Mbed OS-based Arduino boards.
77
category=Other
88
url=https://github.com/bcmi-labs/Arduino_Threads
99
architectures=mbed

0 commit comments

Comments
 (0)