From c16c69a8585bd448e41016268fdfdcfbdaac3d24 Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Wed, 8 Jan 2020 10:44:00 -0500 Subject: [PATCH] Typo fix Synopsis needs to start with uppercase to match other commands --- command/agent_monitor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent_monitor.go b/command/agent_monitor.go index 1d11792dd..860deb474 100644 --- a/command/agent_monitor.go +++ b/command/agent_monitor.go @@ -49,7 +49,7 @@ Monitor Specific Options: } func (c *MonitorCommand) Synopsis() string { - return "stream logs from a Nomad agent" + return "Stream logs from a Nomad agent" } func (c *MonitorCommand) Name() string { return "monitor" }