File tree 2 files changed +2
-2
lines changed
common/kotlinx-coroutines-core-common/src/channels
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import kotlin.jvm.*
10
10
11
11
/* *
12
12
* Channel with array buffer of a fixed [capacity].
13
- * Sender suspends only when buffer is fully and receiver suspends only when buffer is empty.
13
+ * Sender suspends only when buffer is full and receiver suspends only when buffer is empty.
14
14
*
15
15
* This channel is created by `Channel(capacity)` factory function invocation.
16
16
*
Original file line number Diff line number Diff line change @@ -343,7 +343,7 @@ public interface ChannelIterator<out E> {
343
343
*
344
344
* * When `capacity` is positive, but less than [UNLIMITED] -- it creates array-based channel with given capacity.
345
345
* This channel has an array buffer of a fixed `capacity`.
346
- * Sender suspends only when buffer is fully and receiver suspends only when buffer is empty.
346
+ * Sender suspends only when buffer is full and receiver suspends only when buffer is empty.
347
347
*/
348
348
public interface Channel <E > : SendChannel <E >, ReceiveChannel <E > {
349
349
/* *
You can’t perform that action at this time.
0 commit comments