Skip to content

Commit 49eae7e

Browse files
committed
Change description for retrieving data
1 parent ba020c0 commit 49eae7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/02-data-exchange.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ counter.push(10); /* Store a value into the shared variable in a threadsafe mann
2424
```
2525
If the internal queue is full the oldest element is discarded and the latest element is inserted into the queue.
2626

27-
Retrieving stored data works also very naturally like it would for any POD data type:
27+
Stored data can be retrieved by using the `pop` function:
2828
```C++
2929
/* Thread_2.inot */
3030
Serial.println(counter.pop()); /* Retrieves a value from the shared variable in a threadsafe manner. */

0 commit comments

Comments
 (0)