From 9472485e2e629ae501003a281b681bd18b0ff5a7 Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Tue, 18 Aug 2026 20:21:41 +0700 Subject: [PATCH] Remove unnecessary backslash Signed-off-by: Tran Ngoc Nhan --- .../pages/server/environment-repository/git-backend.adoc | 6 +++--- .../pages/server/using-multiple-keys-and-key-rotation.adoc | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/modules/ROOT/pages/server/environment-repository/git-backend.adoc b/docs/modules/ROOT/pages/server/environment-repository/git-backend.adoc index d83cd8d006..e285b97024 100644 --- a/docs/modules/ROOT/pages/server/environment-repository/git-backend.adoc +++ b/docs/modules/ROOT/pages/server/environment-repository/git-backend.adoc @@ -85,7 +85,7 @@ spring: config: server: git: - uri: https://github.com/myorg/\{application} + uri: https://github.com/myorg/{application} ---- You can also support a "`one repository per profile`" policy by using a similar pattern but with @@ -101,7 +101,7 @@ spring: config: server: git: - uri: https://github.com/\{application} + uri: https://github.com/{application} ---- where `\{application}` is provided at request time in the following format: `organization(\{special-string})application`. @@ -385,7 +385,7 @@ spring: server: git: uri: https://github.com/spring-cloud-samples/config-repo - search-paths: '\{application}' + search-paths: '{application}' ---- The preceding listing causes a search of the repository for files in the same name as the directory (as well as the top level). diff --git a/docs/modules/ROOT/pages/server/using-multiple-keys-and-key-rotation.adoc b/docs/modules/ROOT/pages/server/using-multiple-keys-and-key-rotation.adoc index 46c1de6a07..a8fb7ecf07 100644 --- a/docs/modules/ROOT/pages/server/using-multiple-keys-and-key-rotation.adoc +++ b/docs/modules/ROOT/pages/server/using-multiple-keys-and-key-rotation.adoc @@ -9,7 +9,7 @@ If you have configured a keystore (`encrypt.keystore.location`), the default loc [source,yaml] ---- foo: - bar: `\{cipher}{key:testkey}...` + bar: '{cipher}{key:testkey}...' ---- The locator looks for a key named "testkey".