From 01de3b3cb9d66b8fcc2f96ee805dc9fb75542f9d Mon Sep 17 00:00:00 2001 From: Andrew Glen-Young Date: Tue, 10 Jan 2017 15:44:32 -0500 Subject: [PATCH] Pedantic typo fix --- command/agent/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent/command.go b/command/agent/command.go index f81291453d..261dda1ce2 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -657,7 +657,7 @@ func (c *Command) retryJoin(config *Config, errCh chan<- struct{}) { if ec2Enabled { servers, err = config.discoverEc2Hosts(logger) if err != nil { - logger.Printf("[ERROR] agent: Unable to query EC2 insances: %s", err) + logger.Printf("[ERROR] agent: Unable to query EC2 instances: %s", err) } logger.Printf("[INFO] agent: Discovered %d servers from EC2...", len(servers)) }