From d96448fde94a98a1e59f24e7afa86a6a737292a6 Mon Sep 17 00:00:00 2001 From: daisuzz Date: Sun, 24 Jan 2021 22:38:33 +0900 Subject: [PATCH] Fix typo in URI Encoding section of reference docs Closes gh-26436 --- src/docs/asciidoc/web/web-uris.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/web-uris.adoc b/src/docs/asciidoc/web/web-uris.adoc index 29b3a91ef8..ec1e48d451 100644 --- a/src/docs/asciidoc/web/web-uris.adoc +++ b/src/docs/asciidoc/web/web-uris.adoc @@ -318,7 +318,7 @@ the approach to encoding, based on one of the below encoding modes: the first option in the earlier list, to pre-encode the URI template and strictly encode URI variables when expanded. * `VALUES_ONLY`: Does not encode the URI template and, instead, applies strict encoding -to URI variables through `UriUtils#encodeUriUriVariables` prior to expanding them into the +to URI variables through `UriUtils#encodeUriVariables` prior to expanding them into the template. * `URI_COMPONENT`: Uses `UriComponents#encode()`, corresponding to the second option in the earlier list, to encode URI component value _after_ URI variables are expanded.