Skip to content

Commit

Permalink
fix transducer documentation (zio#6842)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannashirn authored May 25, 2022
1 parent 1733f44 commit d80b62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/datatypes/stream/transducer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ title: "Transducer"
`Transducer[E, A, B]` is a type alias for `ZTransducer[Any, E, A, B]`. It is a stream transducer that doesn't require any services, so except the `R` type-parameter, all other things are the same.

```scala
type Sink[+E, A, +L, +B] = ZSink[Any, E, A, L, B]
type Transducer[+E, -A, +B] = ZTransducer[Any, E, A, B]
```

0 comments on commit d80b62d

Please sign in to comment.