diff --git a/src/main/asciidoc/reference/getting-started.adoc b/src/main/asciidoc/reference/getting-started.adoc index 0b975baa..43baacc9 100644 --- a/src/main/asciidoc/reference/getting-started.adoc +++ b/src/main/asciidoc/reference/getting-started.adoc @@ -130,7 +130,7 @@ public class VaultApp { Even in this simple example, there are few things to take notice of * You can instantiate the central class of Spring Vault, -<>, using the `org.springframework.vault.client.VaultEndpoint` +<>, using the `org.springframework.vault.client.VaultEndpoint` object and the `ClientAuthentication`. You are not required to spin up a Spring Context to use Spring Vault. * Vault is expected to be configured with a root token of @@ -222,7 +222,7 @@ public class AppConfig extends AbstractVaultConfiguration { } } ---- -<1> Create a new `VaultEndpoint` that points by default to `https://localhost:8200`. +<1> Create a new `VaultEndpoint` that points by default to `\https://localhost:8200`. <2> This sample uses `TokenAuthentication` to get started quickly. See <> for details on supported authentication methods. ====