summaryrefslogtreecommitdiff
path: root/bash_completion
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2009-12-24 15:31:19 +0200
committerVille Skyttä <ville.skytta@iki.fi>2009-12-24 15:31:19 +0200
commit8f56de625e44fa43c42b83d9670dc115062ac1a5 (patch)
tree1ae75da392c351d2fe94f6e19d4fc82a72fc7e99 /bash_completion
parentc9c98da36edeb9305e24e7ea2d8ccf8b0934ce70 (diff)
downloadbash-completion-8f56de625e44fa43c42b83d9670dc115062ac1a5.tar.gz
Fix $2 example in _get_cword doc.
Diffstat (limited to 'bash_completion')
-rw-r--r--bash_completion2
1 files changed, 1 insertions, 1 deletions
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()