From 392166faea6e0fe3bd71fd5b57540855c32a2ceb Mon Sep 17 00:00:00 2001 From: Patrick Decat Date: Mon, 15 May 2017 14:39:55 +0200 Subject: [PATCH] Typo: now => no (#14493) > This validation checks that there are now splat variables referencing ourself. This currently is not allowed. => > This validation checks that there are no splat variables referencing ourself. This currently is not allowed. --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 9a764ace3..439c7c567 100644 --- a/config/config.go +++ b/config/config.go @@ -545,7 +545,7 @@ func (c *Config) Validate() error { // Verify provisioners for _, p := range r.Provisioners { - // This validation checks that there are now splat variables + // This validation checks that there are no splat variables // referencing ourself. This currently is not allowed. for _, v := range p.ConnInfo.Variables {