diff --git a/kotlinx-coroutines-core/concurrent/src/channels/Channels.kt b/kotlinx-coroutines-core/concurrent/src/channels/Channels.kt index 24422b5a6b..c955812f31 100644 --- a/kotlinx-coroutines-core/concurrent/src/channels/Channels.kt +++ b/kotlinx-coroutines-core/concurrent/src/channels/Channels.kt @@ -30,7 +30,7 @@ import kotlin.jvm.* public fun SendChannel.trySendBlocking(element: E): ChannelResult { /* * Sent successfully -- bail out. - * But failure may indicate either that the channel it full or that + * But failure may indicate either that the channel is full or that * it is close. Go to slow path on failure to simplify the successful path and * to materialize default exception. */