Skip to content

Commit

Permalink
Update reactivestreams.md (zio#4442)
Browse files Browse the repository at this point in the history
It has been renamed, but the document has not been updated.
  • Loading branch information
mingyang91 authored Nov 24, 2020
1 parent 0661677 commit 510e102
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/interop/reactivestreams.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ id: interop_reactivestreams
title: "Reactive Streams"
---

Checkout the `interop-reactiveStreams` module for inter-operation support.
Checkout the `interop-reactive-streams` module for inter-operation support.

## Reactive Streams `Producer` and `Subscriber`

**ZIO** integrates with [Reactive Streams](http://reactivestreams.org) by providing conversions from `zio.stream.Stream` to `org.reactivestreams.Publisher`
and from `zio.stream.Sink` to `org.reactivestreams.Subscriber` and vice versa. Simply import `import zio.interop.reactiveStreams._` to make the
and from `zio.stream.Sink` to `org.reactivestreams.Subscriber` and vice versa. Simply import `import zio.interop.reactivestreams._` to make the
conversions available.

## Examples
Expand All @@ -18,7 +18,7 @@ First, let's get a few imports out of the way.
```scala
import org.reactivestreams.example.unicast._
import zio._
import zio.interop.reactiveStreams._
import zio.interop.reactivestreams._
import zio.stream._

val runtime = Runtime.default
Expand Down

0 comments on commit 510e102

Please sign in to comment.