File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
kotlinx-coroutines-nio/src/main/kotlin/kotlinx/coroutines/experimental/nio Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ suspend fun AsynchronousServerSocketChannel.aAccept() = suspendCancellableCorout
9191}
9292
9393/* *
94- * Performs [AsynchronousServerSocketChannel .connect] without blocking a thread and resumes when asynchronous operation completes.
94+ * Performs [AsynchronousSocketChannel .connect] without blocking a thread and resumes when asynchronous operation completes.
9595 * This suspending function is cancellable.
9696 * If the [Job] of the current coroutine is completed while this suspending function is suspended, this function
9797 * *closes the underlying channel* and immediately resumes with [CancellationException].
@@ -104,7 +104,7 @@ suspend fun AsynchronousSocketChannel.aConnect(
104104}
105105
106106/* *
107- * Performs [AsynchronousServerSocketChannel .read] without blocking a thread and resumes when asynchronous operation completes.
107+ * Performs [AsynchronousSocketChannel .read] without blocking a thread and resumes when asynchronous operation completes.
108108 * This suspending function is cancellable.
109109 * If the [Job] of the current coroutine is completed while this suspending function is suspended, this function
110110 * *closes the underlying channel* and immediately resumes with [CancellationException].
@@ -119,7 +119,7 @@ suspend fun AsynchronousSocketChannel.aRead(
119119}
120120
121121/* *
122- * Performs [AsynchronousServerSocketChannel .write] without blocking a thread and resumes when asynchronous operation completes.
122+ * Performs [AsynchronousSocketChannel .write] without blocking a thread and resumes when asynchronous operation completes.
123123 * This suspending function is cancellable.
124124 * If the [Job] of the current coroutine is completed while this suspending function is suspended, this function
125125 * *closes the underlying channel* and immediately resumes with [CancellationException].
You can’t perform that action at this time.
0 commit comments