We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef696a0 commit 65f1eafCopy full SHA for 65f1eaf
kotlinx-coroutines-core/common/src/flow/Builders.kt
@@ -67,7 +67,7 @@ public fun <T> (() -> T).asFlow(): Flow<T> = flow {
67
* Example of usage:
68
* ```
69
* suspend fun remoteCall(): R = ...
70
- * suspend fun remoteCallFlow(): Flow<R> = ::remoteCall.asFlow()
+ * fun remoteCallFlow(): Flow<R> = ::remoteCall.asFlow()
71
72
*/
73
@FlowPreview
0 commit comments