From ddbd28f638b47c2175872ab0aa23a66983f19f92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 1 May 2011 17:29:43 +0300 Subject: [PATCH] Comment fixes. --- bash_completion | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash_completion b/bash_completion index fbaddd0c..b523de52 100644 --- a/bash_completion +++ b/bash_completion @@ -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}"