Fix typos in WebRequest.checkNotModified docs
Closes gh-1035
This commit is contained in:
committed by
Brian Clozel
parent
6316a353bb
commit
23aeba0e46
@@ -4813,7 +4813,7 @@ as the following example shows:
|
||||
.Java
|
||||
----
|
||||
@RequestMapping
|
||||
public String myHandleMethod(WebRequest webRequest, Model model) {
|
||||
public String myHandleMethod(WebRequest request, Model model) {
|
||||
|
||||
long eTag = ... // <1>
|
||||
|
||||
@@ -4833,7 +4833,7 @@ as the following example shows:
|
||||
.Kotlin
|
||||
----
|
||||
@RequestMapping
|
||||
fun myHandleMethod(webRequest: WebRequest, model: Model): String? {
|
||||
fun myHandleMethod(request: WebRequest, model: Model): String? {
|
||||
|
||||
val eTag: Long = ... // <1>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user