Replaced the hardcoded default value with the constant.
diff --git a/common/kotlinx-coroutines-core-common/src/channels/Channel.kt b/common/kotlinx-coroutines-core-common/src/channels/Channel.kt
index 6c48c64..091f368 100644
--- a/common/kotlinx-coroutines-core-common/src/channels/Channel.kt
+++ b/common/kotlinx-coroutines-core-common/src/channels/Channel.kt
@@ -387,7 +387,7 @@
  * 
  * @throws IllegalArgumentException when [capacity] < -1
  */
-public fun <E> Channel(capacity: Int = 0): Channel<E> =
+public fun <E> Channel(capacity: Int = RENDEZVOUS): Channel<E> =
     when (capacity) {
         RENDEZVOUS -> RendezvousChannel()
         UNLIMITED -> LinkedListChannel()