From 0a324ea9a70eefc6fbd619fadfff92cb258081aa Mon Sep 17 00:00:00 2001 From: ghainesii <46608360+ghainesii@users.noreply.github.com> Date: Thu, 14 Sep 2023 12:08:50 -0500 Subject: [PATCH] Add missing period in RestClient documentation See gh-31237 --- framework-docs/modules/ROOT/pages/integration/rest-clients.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc index d186d73b087..2be30aea2a9 100644 --- a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc +++ b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc @@ -68,7 +68,7 @@ This can be done with `method(HttpMethod)`, or with the convenience methods `get ==== Request URL -Next, the request URI can be specified with the `uri` methods +Next, the request URI can be specified with the `uri` methods. This step is optional, and can be skipped if the `RestClient` is configured with a default URI. The URL is typically specified as `String`, with optional URI template variables. String URLs are encoded by default, but this can be changed by building a client with a custom `uriBuilderFactory`.