From 8f56de625e44fa43c42b83d9670dc115062ac1a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Thu, 24 Dec 2009 15:31:19 +0200 Subject: [PATCH] Fix $2 example in _get_cword doc. --- bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash_completion b/bash_completion index d6374f7c..95fde21c 100644 --- a/bash_completion +++ b/bash_completion @@ -265,7 +265,7 @@ __reassemble_comp_words_by_ref() { # ensures we get the same word on both bash-3 and bash-4. # @param $2 integer Index number of word to return, negatively offset to the # current word (default is 0, previous is 1), respecting the exclusions -# given at $1. For example, `__get_cword4 "=:" 1' returns the word left of +# given at $1. For example, `_get_cword "=:" 1' returns the word left of # the current word, respecting the exclusions "=:". # _get_cword()