Skip to content

Commit 9594c23

Browse files
committed
Documentation updates.
1 parent cf28e3b commit 9594c23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ In the case when a project consists of multiple source files and the functionali
248248

249249
# Examples
250250

251-
Every example below is a complete Arduino sketch. It was decided to use Arduino boards for examples because the boards have somewhat standardised application programming interface and hardware.
251+
The examples below may be used as a tutorial. Every example is a complete Arduino sketch. It was decided to use Arduino boards for examples because the boards have somewhat standardised application programming interface and hardware.
252252

253253
Nevertheless, this library can be used on its own on AVR controllers: it does not contain any Arduino-specific code. Hopefully, the examples are easy to adapt to any AVR based hardware.
254254

@@ -323,7 +323,7 @@ Nevertheless, if you are brave enough to write your own RTOS, this tiny sketch m
323323

324324
## Coroutines
325325

326-
### [Basic_Generator](./examples/Coroutines/01.Basic_Generator/01.Basic_Generator.ino)
326+
### [Basic Generator](./examples/Coroutines/01.Basic_Generator/01.Basic_Generator.ino)
327327

328328
This example demonstrates how an asymmetric coroutine might be used as a generator. Every time the coroutine gets invoked it generates the next number in sequence (`0...N`) and returns it back to the invoker.
329329

@@ -343,7 +343,7 @@ When being uploaded to an Arduino board, this sketch print numbers in increasing
343343
344344
```
345345

346-
### [Symmetric_Coroutines_via_Asymmetric_Ones](./examples/Coroutines/02.Symmetric_Coroutines_via_Asymmetric_Ones/02.Symmetric_Coroutines_via_Asymmetric_Ones.ino)
346+
### [Symmetric Coroutines via Asymmetric Ones](./examples/Coroutines/02.Symmetric_Coroutines_via_Asymmetric_Ones/02.Symmetric_Coroutines_via_Asymmetric_Ones.ino)
347347

348348
This example demonstrates how one could implement symmetric coroutines on top of the asymmetric ones.
349349

0 commit comments

Comments
 (0)