Skip to content

Commit d7941f7

Browse files
sebromeroaentinger
andauthored
Update docs/02-data-exchange.md
Co-authored-by: Alexander Entinger <[email protected]>
1 parent 3c5a3e9 commit d7941f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/02-data-exchange.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ SINK(counter, int); /* Declaration of a data sink of type `int` with a internal
4545
/* DataConsumerThread_2.inot */
4646
SINK(counter, int, 10); /* Declaration of a data sink of type `int` with a internal queue size of '10'. */
4747
```
48-
In order to actually facilitate the flow of data from a source to a sink the sinks must be connected to the desired data source . This is done within the main `ino`-file:
48+
In order to actually facilitate the flow of data from a source to a sink the sinks must be connected to the desired data source. This is done within the main `ino`-file:
4949
```C++
5050
/* MySinkSourceDemo.ino */
5151
DataProducerThread.counter.connectTo(DataConsumerThread_1.counter);

0 commit comments

Comments
 (0)