diff options
author | Dag-Erling Smørgrav <des@des.no> | 2017-03-30 12:57:57 +0200 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2017-03-30 12:18:26 +0100 |
commit | 48501165545140148d82ba047e3f73a8bde1fe08 (patch) | |
tree | 303515696cd0406515ff5ec01e49643e6a686c66 /Completion/BSD/Command/_kld | |
parent | 5aec3f974279973091de4974bbd41b765bbc435b (diff) | |
download | zsh-48501165545140148d82ba047e3f73a8bde1fe08.tar.gz zsh-48501165545140148d82ba047e3f73a8bde1fe08.tar.xz zsh-48501165545140148d82ba047e3f73a8bde1fe08.zip |
Fix typo breaking kld completion
Diffstat (limited to 'Completion/BSD/Command/_kld')
-rw-r--r-- | Completion/BSD/Command/_kld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/BSD/Command/_kld b/Completion/BSD/Command/_kld index 94528955c..42fdc2bd0 100644 --- a/Completion/BSD/Command/_kld +++ b/Completion/BSD/Command/_kld @@ -26,7 +26,7 @@ _kld() { case "$service" in kldload) _arguments -s -S -A "-*" \ - "-n[don't try to load module if already loaded]" + "-n[don't try to load module if already loaded]" \ '-v[be verbose]' \ '-q[silence any extraneous warnings]' \ '*:module to load:_kld_module' |