From b036b73e11eab0c28fead9e15cf14e5991cb360d Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Tue, 27 Dec 2016 17:49:51 +0100 Subject: [PATCH] Typos --- CHANGELOG.md | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a53875..d6c7e26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## 0.4.1 [2016-12-24] * [fix] Factory Null-tolerant for trusted certificate (#6) -* [test] StackTraces testet for secret leaks +* [test] StackTraces tested for secret leaks * [test] Tested against Vault 0.6.4 ## 0.4.0 [2016-11-06] diff --git a/README.md b/README.md index c5fceb1..098fccf 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Java Vault Connector ========= Java Vault Connector is a connector library for [Vault](https://www.vaultproject.io) by [Hashicorp](https://www.hashicorp.com) written in Java. The connector allows simple usage of Vault's secret store in own applications. -**Current available features:** +**Features:** * HTTP(S) backend connector * Ability to provide or enforce custom CA certificate @@ -27,17 +27,17 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject **Usage Example** ```java -// Instanciate using builder pattern style factory +// Instantiate using builder pattern style factory VaultConnector vault = VaultConnectorFactory.httpFactory() .withHost("127.0.0.1") .withPort(8200) .withTLS() .build(); -//authenticate with token +// Authenticate with token vault.authToken("01234567-89ab-cdef-0123-456789abcdef"); -// retrieve secret +// Retrieve secret String secret = vault.readSecret("some/secret/key").getValue(); ```