Browse Source

Fix Kotlin example for filtering handler functions

Closes gh-#27337
pull/27339/head
Steve Wei 4 years ago committed by GitHub
parent
commit
b120e0b8f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/docs/asciidoc/web/webmvc-functional.adoc

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

@ -799,10 +799,10 @@ For instance, consider the following example: @@ -799,10 +799,10 @@ For instance, consider the following example:
ServerRequest.from(it)
.header("X-RequestHeader", "Value").build()
}
POST("/person", handler::createPerson)
after { _, response -> // <2>
logResponse(response)
}
}
POST("/person", handler::createPerson)
after { _, response -> // <2>
logResponse(response)
}
}
----

Loading…
Cancel
Save