Skip to content

Commit 25d7f09

Browse files
committed
Polishing
1 parent caa1730 commit 25d7f09

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/docs/asciidoc/languages/kotlin.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -294,13 +294,13 @@ for a concrete example.
294294

295295
=== Coroutines
296296

297-
As of Spring Framework 5.2, https://kotlinlang.org/docs/reference/coroutines-overview.html[Coroutines support]
297+
As of Spring Framework 5.2, https://kotlinlang.org/docs/reference/coroutines-overview.html[Coroutines] support
298298
is provided via extensions for WebFlux client and server functional API. A dedicated
299299
{doc-root}/spring-framework/docs/{spring-version}/kdoc-api/spring-framework/org.springframework.web.reactive.function.server/-co-router-function-dsl/[`coRouter { }`]
300300
router DSL is also available.
301301

302-
Coroutines extensions use `await` prefix or `AndAwait` suffix, and most are using similar name than their Reactive
303-
counterparts except `exchange` in `WebClient.RequestHeadersSpec` which translates to `awaitResponse`.
302+
Coroutines extensions use `await` prefix or `AndAwait` suffix, and most are using similar names to their Reactive
303+
counterparts, except `exchange` in `WebClient.RequestHeadersSpec` which translates to `awaitResponse`.
304304

305305
[source,kotlin,indent=0]
306306
----
@@ -323,7 +323,7 @@ class UserHandler(builder: WebClient.Builder) {
323323
}
324324
----
325325

326-
Read this https://medium.com/@elizarov/structured-concurrency-722d765aa952[structured concurrency blog post]
326+
Read this blog post about https://medium.com/@elizarov/structured-concurrency-722d765aa952[structured concurrency]
327327
to understand how to run code concurrently with Coroutines.
328328

329329
=== Kotlin Script Templates

0 commit comments

Comments
 (0)