Fix typo in KDoc
diff --git a/kotlinx-coroutines-core/common/src/channels/ArrayChannel.kt b/kotlinx-coroutines-core/common/src/channels/ArrayChannel.kt
index bf5b36c..01afc21 100644
--- a/kotlinx-coroutines-core/common/src/channels/ArrayChannel.kt
+++ b/kotlinx-coroutines-core/common/src/channels/ArrayChannel.kt
@@ -10,7 +10,7 @@
 
 /**
  * Channel with array buffer of a fixed [capacity].
- * Sender suspends only when buffer is fully and receiver suspends only when buffer is empty.
+ * Sender suspends only when buffer is full and receiver suspends only when buffer is empty.
  *
  * This channel is created by `Channel(capacity)` factory function invocation.
  *
diff --git a/kotlinx-coroutines-core/common/src/channels/Channel.kt b/kotlinx-coroutines-core/common/src/channels/Channel.kt
index 389cece..dbec12f 100644
--- a/kotlinx-coroutines-core/common/src/channels/Channel.kt
+++ b/kotlinx-coroutines-core/common/src/channels/Channel.kt
@@ -343,7 +343,7 @@
  *
  * * When `capacity` is positive, but less than [UNLIMITED] -- it creates array-based channel with given capacity.
  *   This channel has an array buffer of a fixed `capacity`.
- *   Sender suspends only when buffer is fully and receiver suspends only when buffer is empty.
+ *   Sender suspends only when buffer is full and receiver suspends only when buffer is empty.
  */
 public interface Channel<E> : SendChannel<E>, ReceiveChannel<E> {
     /**