Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tejzpr committed Mar 10, 2021
1 parent d3ab061 commit 8188a39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ func workFn(val interface{}) interface{} {
```go
func main() {
max := 10
inputChan := make(chan *OrderedInput)
inputChan := make(chan *concurrently.OrderedInput)
doneChan := make(chan bool)
outChan := Process(inputChan, workFn, &Options{})
outChan := Process(inputChan, workFn, &concurrently.Options{})
go func() {
for {
select {
Expand Down

0 comments on commit 8188a39

Please sign in to comment.