Skip to content

Commit

Permalink
unposted: fix typo (=+ to +=)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Kiddle committed Nov 24, 2016
1 parent 8ec1a25 commit 5beb65a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ChangeLog
@@ -1,5 +1,7 @@
2016-11-24 Oliver Kiddle <opk@zsh.org>

* unposted: Completion/Unix/Command/_date: fix typo (=+ to +=)

* 40004 (tweaked): Completion/Redhat/Command/_yum: fix cache
mechanism, complete groups and other minor improvements

Expand Down
2 changes: 1 addition & 1 deletion Completion/Unix/Command/_date
Expand Up @@ -67,7 +67,7 @@ else
freebsd*|dragonfly*)
args+=( '-R[display in RFC2822 format]' )
;|
openbsd*|netbsd*) args=+( '-a[gradually skew]' )
openbsd*|netbsd*) args+=( '-a[gradually skew]' )
;|
openbsd*)
args+=( '-z[specify timezone for output]:time zone:_time_zone')
Expand Down

0 comments on commit 5beb65a

Please sign in to comment.