Skip to content

Commit abc29b4

Browse files
authored
Fix typo on Channels documentation (#3575)
There was a small typo on the channels documentation
1 parent 412f585 commit abc29b4

File tree

1 file changed

+1
-1
lines changed
  • kotlinx-coroutines-core/concurrent/src/channels

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/concurrent/src/channels/Channels.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import kotlin.jvm.*
3030
public fun <E> SendChannel<E>.trySendBlocking(element: E): ChannelResult<Unit> {
3131
/*
3232
* Sent successfully -- bail out.
33-
* But failure may indicate either that the channel it full or that
33+
* But failure may indicate either that the channel is full or that
3434
* it is close. Go to slow path on failure to simplify the successful path and
3535
* to materialize default exception.
3636
*/

0 commit comments

Comments
 (0)