From d56df632e9f507efc25d5759e51f96fbe111c4f1 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Mon, 8 May 2017 20:59:50 +0200 Subject: [PATCH] Fix links in reference docs. --- src/main/asciidoc/reference/getting-started.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. ====