diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2020-06-16 21:29:18 +0800 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2020-06-16 21:32:03 +0800 |
commit | ff0ff86336cab667369f3d89aa1c603abffd23c6 (patch) | |
tree | 9ef230e2ca8a73b5d4ab85c6a34af7c59f3c9e78 /misc | |
parent | 6352d6aa2338f47cd8b60631dec5f4161d9d92ec (diff) | |
download | git-bug-ff0ff86336cab667369f3d89aa1c603abffd23c6.tar.gz |
doc: fix typos
Diffstat (limited to 'misc')
-rw-r--r-- | misc/powershell_completion/git-bug | 6 | ||||
-rw-r--r-- | misc/zsh_completion/git-bug | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/misc/powershell_completion/git-bug b/misc/powershell_completion/git-bug index 59d2bf12..d674ad9b 100644 --- a/misc/powershell_completion/git-bug +++ b/misc/powershell_completion/git-bug @@ -226,8 +226,8 @@ Register-ArgumentCompleter -Native -CommandName 'git-bug' -ScriptBlock { [CompletionResult]::new('--number', 'number', [CompletionResultType]::ParameterName, 'Only show the version number') [CompletionResult]::new('-c', 'c', [CompletionResultType]::ParameterName, 'Only show the commit hash') [CompletionResult]::new('--commit', 'commit', [CompletionResultType]::ParameterName, 'Only show the commit hash') - [CompletionResult]::new('-a', 'a', [CompletionResultType]::ParameterName, 'Show all version informations') - [CompletionResult]::new('--all', 'all', [CompletionResultType]::ParameterName, 'Show all version informations') + [CompletionResult]::new('-a', 'a', [CompletionResultType]::ParameterName, 'Show all version information') + [CompletionResult]::new('--all', 'all', [CompletionResultType]::ParameterName, 'Show all version information') break } 'git-bug;webui' { @@ -240,4 +240,4 @@ Register-ArgumentCompleter -Native -CommandName 'git-bug' -ScriptBlock { }) $completions.Where{ $_.CompletionText -like "$wordToComplete*" } | Sort-Object -Property ListItemText -}
\ No newline at end of file +} diff --git a/misc/zsh_completion/git-bug b/misc/zsh_completion/git-bug index d28bd244..6ec6d0d0 100644 --- a/misc/zsh_completion/git-bug +++ b/misc/zsh_completion/git-bug @@ -449,7 +449,7 @@ function _git-bug_version { _arguments \ '(-n --number)'{-n,--number}'[Only show the version number]' \ '(-c --commit)'{-c,--commit}'[Only show the commit hash]' \ - '(-a --all)'{-a,--all}'[Show all version informations]' + '(-a --all)'{-a,--all}'[Show all version information]' } function _git-bug_webui { |