From a58d8f9570ed59e400e3ebe33bac4813c504289d Mon Sep 17 00:00:00 2001 From: Martin Kiperszmid Date: Wed, 4 Jan 2023 12:21:49 -0300 Subject: [PATCH] Fix typo on Channels documentation There was a small typo on the channels documentation --- kotlinx-coroutines-core/concurrent/src/channels/Channels.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */