Skip to content

Commit

Permalink
Update error as reported by CE3
Browse files Browse the repository at this point in the history
  • Loading branch information
bwignall committed Jun 15, 2024
1 parent 0377f21 commit 880171d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ import cats.effect.IO
Stream(1,2,3).merge(Stream.eval(IO { Thread.sleep(200); 4 })).compile.toVector.unsafeRunSync()
```

Oops, we need a `cats.effect.ContextShift[IO]` in implicit scope. Let's add that:
Oops, we need a `cats.effect.unsafe.IORuntime` in implicit scope. Let's add that:

```scala mdoc
import cats.effect.IO
Expand Down

0 comments on commit 880171d

Please sign in to comment.