From b2297eb507b4ef3464386322979e85f147a62b4a Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Wed, 6 Oct 2021 23:43:33 +0200 Subject: [PATCH] docs: Fix typos in README: exemple -> example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index befa43b..e66bcd4 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ The C++ implementation of the Go Select statement * support input in channel in [Case](#case) block channel evaluation (feature seems to be working but might need a bit more attention) * random channel ([Case](#case)) selection is now supported -Go exemple (from [here](https://tour.golang.org/concurrency/5)) : +Go example (from [here](https://tour.golang.org/concurrency/5)) : ```Go func fibonacci(c, quit chan int) { x, y := 0, 1 @@ -101,7 +101,7 @@ func main() { ``` -C++ exemple implementation : +C++ example implementation : ```C++ void fibonacci(Chan& c, Chan& quit) {