Skip to content

Commit b120e0b

Browse files
authored
Fix Kotlin example for filtering handler functions
Closes gh-#27337
1 parent c27ec00 commit b120e0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/docs/asciidoc/web/webmvc-functional.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -799,10 +799,10 @@ For instance, consider the following example:
799799
ServerRequest.from(it)
800800
.header("X-RequestHeader", "Value").build()
801801
}
802-
POST("/person", handler::createPerson)
803-
after { _, response -> // <2>
804-
logResponse(response)
805-
}
802+
}
803+
POST("/person", handler::createPerson)
804+
after { _, response -> // <2>
805+
logResponse(response)
806806
}
807807
}
808808
----

0 commit comments

Comments
 (0)