Skip to content

Commit 639a254

Browse files
committed
Polishing
1 parent 4e2b51b commit 639a254

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/docs/asciidoc/languages/kotlin.adoc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ since the later requires a reference to the outer class.
131131

132132
The Spring Framework also takes advantage of https://kotlinlang.org/docs/reference/null-safety.html[Kotlin null-safety]
133133
to determine if a HTTP parameter is required without having to explicitly
134-
define the `required` attribute. That means `@RequestParam name: String?` is treated
135-
as not required and, conversely, `@RequestParam name: String` is treated as being required.
134+
define the `required` attribute. That means `@RequestParam name: String?` is treated
135+
as not required and, conversely, `@RequestParam name: String` is treated as being required.
136136
This feature is also supported on the Spring Messaging `@Header` annotation.
137137

138138
In a similar fashion, Spring bean injection with `@Autowired`, `@Bean`, or `@Inject` uses
@@ -417,6 +417,8 @@ dependencies {
417417
}
418418
----
419419

420+
Version `1.3.0` and above are supported.
421+
420422
=== How Reactive translates to Coroutines?
421423

422424
For return values, the translation from Reactive to Coroutines APIs is the following:
@@ -541,7 +543,7 @@ class CoroutinesViewController(banner: Banner) {
541543

542544
=== WebFlux.fn
543545

544-
Here is an example of Coroutines router definined via the {doc-root}/spring-framework/docs/{spring-version}/kdoc-api/spring-framework/org.springframework.web.reactive.function.server/co-router.html[coRouter { }] DSL and related handlers.
546+
Here is an example of Coroutines router defined via the {doc-root}/spring-framework/docs/{spring-version}/kdoc-api/spring-framework/org.springframework.web.reactive.function.server/co-router.html[coRouter { }] DSL and related handlers.
545547

546548
[source,kotlin,indent=0]
547549
----

0 commit comments

Comments
 (0)