diff options
| author | Eyal Posener <[email protected]> | 2017-08-25 09:41:42 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-25 09:41:42 +0300 |
| commit | 91e5b1f44aaf66170b8e890442035731cd4aa60d (patch) | |
| tree | c475a9f6c7cae244a26bf01e6950cb8f59b494b3 /command.go | |
| parent | 2b9ace50d6baef8456aa9cfb65b961b00888a54c (diff) | |
lint: fix typo
Diffstat (limited to 'command.go')
| -rw-r--r-- | command.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ type Flags map[string]Predictor // Predict completion of flags names according to command line arguments func (f Flags) Predict(a Args) (prediction []string) { for flag := range f { - // If the flag starts with a hyphen, we avoid emiting the prediction + // If the flag starts with a hyphen, we avoid emitting the prediction // unless the last typed arg contains a hyphen as well. flagHyphenStart := len(flag) != 0 && flag[0] == '-' lastHyphenStart := len(a.Last) != 0 && a.Last[0] == '-' |
