diff --git a/docs/channels.md b/docs/channels.md index 9bf72b33d8..2acb2424fe 100644 --- a/docs/channels.md +++ b/docs/channels.md @@ -19,7 +19,7 @@ class ChannelsGuideTest { -* [Channels (experimental)](#channels-experimental) +* [Channels](#channels) * [Channel basics](#channel-basics) * [Closing and iteration over channels](#closing-and-iteration-over-channels) * [Building channel producers](#building-channel-producers) @@ -33,15 +33,11 @@ class ChannelsGuideTest { -## Channels (experimental) +## Channels Deferred values provide a convenient way to transfer a single value between coroutines. Channels provide a way to transfer a stream of values. -> Channels are an experimental feature of `kotlinx.coroutines`. Their API is expected to -evolve in the upcoming updates of the `kotlinx.coroutines` library with potentially -breaking changes. - ### Channel basics A [Channel] is conceptually very similar to `BlockingQueue`. One key difference is that