Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -101,7 +101,7 @@ func main() {

```

C++ exemple implementation :
C++ example implementation :
```C++
void fibonacci(Chan<int>& c, Chan<int>& quit)
{
Expand Down