Fix typo in 'logout' command help

This commit is contained in:
Brian Lachniet
2017-10-28 11:04:02 -04:00
committed by Cory Bennett
parent 7bfa241547
commit 90007771bf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -473,7 +473,7 @@ Commands:
labels set: Set labels on an issue
list: Prints list of issues for given search criteria
login: Attempt to login into jira server
logout: Deactivate sesssion with Jira server
logout: Deactivate session with Jira server
rank: Mark issues as blocker
reopen: Transition issue to reopen state
request: Open issue in requestr
+1 -1
View File
@@ -14,7 +14,7 @@ import (
func CmdLogoutRegistry() *jiracli.CommandRegistryEntry {
opts := jiracli.CommonOptions{}
return &jiracli.CommandRegistryEntry{
"Deactivate sesssion with Jira server",
"Deactivate session with Jira server",
func(fig *figtree.FigTree, cmd *kingpin.CmdClause) error {
jiracli.LoadConfigs(cmd, fig, &opts)
return nil