Skip to content

Commit de8b9e9

Browse files
committed
buildChannel deprecation template fixed
1 parent 85923e2 commit de8b9e9

File tree

1 file changed

+1
-1
lines changed
  • kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/channels

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/channels/Produce.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public fun <E> produce(
9393
/**
9494
* @suppress **Deprecated**: Renamed to `produce`.
9595
*/
96-
@Deprecated(message = "Renamed to `produce`", replaceWith = ReplaceWith("produce"))
96+
@Deprecated(message = "Renamed to `produce`", replaceWith = ReplaceWith("produce(context, capacity, block)"))
9797
public fun <E> buildChannel(
9898
context: CoroutineContext,
9999
capacity: Int = 0,

0 commit comments

Comments
 (0)