Comment fixes.

master
Ville Skyttä 2011-05-01 17:29:43 +03:00
parent 0448c765ba
commit ddbd28f638
1 changed files with 2 additions and 2 deletions

View File

@ -344,7 +344,7 @@ __reassemble_comp_words_by_ref()
# @param $2 words Name of variable to return words to
# @param $3 cword Name of variable to return cword to
# @param $4 cur Name of variable to return current word to complete to
# @see ___get_cword_at_cursor_by_ref()
# @see __reassemble_comp_words_by_ref()
__get_cword_at_cursor_by_ref()
{
local cword words=()
@ -366,7 +366,7 @@ __get_cword_at_cursor_by_ref()
((index--))
done
# Does found word matches cword?
# Does found word match cword?
if [[ "$i" -lt "$cword" ]]; then
# No, cword lies further;
local old_size="${#cur}"