From 94db194a4d8ac89373ed301db2e653ea956c9c20 Mon Sep 17 00:00:00 2001 From: Srikanth Venkatesh Date: Wed, 24 Jul 2019 22:28:48 +0530 Subject: [PATCH] fixed a typo in an exception message regarding absence of config files while starting up vault (#6816) --- command/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/server.go b/command/server.go index 1d7389ff63..14583d61f8 100644 --- a/command/server.go +++ b/command/server.go @@ -421,7 +421,7 @@ func (c *ServerCommand) Run(args []string) int { if config == nil { c.UI.Output(wrapAtLength( "No configuration files found. Please provide configurations with the " + - "-config flag. If you are supply the path to a directory, please " + + "-config flag. If you are supplying the path to a directory, please " + "ensure the directory contains files with the .hcl or .json " + "extension.")) return 1