From cbf3f244e8f16cc116fbb363940f34cf7ad162d2 Mon Sep 17 00:00:00 2001 From: Chao Zhang Date: Wed, 17 Mar 2021 01:56:22 -0700 Subject: [PATCH] Fix typo in flow/Builders.kt (#2589) --- kotlinx-coroutines-core/common/src/flow/Builders.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlinx-coroutines-core/common/src/flow/Builders.kt b/kotlinx-coroutines-core/common/src/flow/Builders.kt index 10dd3aefb2..3a43ccb7e0 100644 --- a/kotlinx-coroutines-core/common/src/flow/Builders.kt +++ b/kotlinx-coroutines-core/common/src/flow/Builders.kt @@ -293,7 +293,7 @@ public fun channelFlow(@BuilderInference block: suspend ProducerScope.() * Adjacent applications of [callbackFlow], [flowOn], [buffer], [produceIn], and [broadcastIn] are * always fused so that only one properly configured channel is used for execution. * - * Example of usage that converts a multi-short callback API to a flow. + * Example of usage that converts a multi-shot callback API to a flow. * For single-shot callbacks use [suspendCancellableCoroutine]. * * ```