1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-22 16:20:23 +02:00

39074: _ip-neighbour: Fix typo in 'lladdr'.

This commit is contained in:
Daniel Shahaf 2016-08-19 15:58:29 +00:00
parent 31dc8b52b5
commit 1c6d3e3f04
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2016-08-20 Daniel Shahaf <d.s@daniel.shahaf.name>
* 39074: Completion/Unix/Command/_ip: _ip-neighbour: Fix typo in
'lladdr'.
2016-08-19 Oliver Kiddle <opk@zsh.org>
* 39072: Completion/Unix/Command/_git: minor tweaks

View file

@ -285,7 +285,7 @@ local -a neigh_add_cmds
_regex_words neigh-add-commands "neighbour add command" \
't*o:add new neighbour IP address:$subcmd_ipaddr' \
'dev:specify network device:$subcmd_dev' \
'l*ladr:specify link layer (MAC) address or null:$subcmd_lladdr' \
'l*laddr:specify link layer (MAC) address or null:$subcmd_lladdr' \
'n*ud:specify neighbour unreachability detection state:$subcmd_nud'
# to-address without keyword can appear first
neigh_add_cmds=( "(" $subcmd_ipaddr "|" ")" "$reply[@]" "#")