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 d83cd8d00..e285b9702 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 46c1de6a0..a8fb7ecf0 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".