Fix improperly formatted help output strings (#6414)

This commit is contained in:
Jim Kalafut
2019-03-14 13:57:28 -07:00
committed by Calvin Leung Huang
parent dcfdb3d5d5
commit 8de190f31d
5 changed files with 13 additions and 13 deletions

View File

@@ -114,14 +114,14 @@ func (c *AuthEnableCommand) Flags() *FlagSets {
f.StringSliceVar(&StringSliceVar{
Name: flagNameAuditNonHMACRequestKeys,
Target: &c.flagAuditNonHMACRequestKeys,
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
"devices in the request data object.",
})
f.StringSliceVar(&StringSliceVar{
Name: flagNameAuditNonHMACResponseKeys,
Target: &c.flagAuditNonHMACResponseKeys,
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
"devices in the response data object.",
})