summaryrefslogtreecommitdiff
path: root/examples/basic_completion.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-04-23 18:19:08 -0400
committerGitHub <noreply@github.com>2020-04-23 18:19:08 -0400
commit9c7bbfa5bdbf8c8d81c0cd3c3cd5179d700de0b2 (patch)
tree33169eca113b07a891ef4fcdb70a4bb409b5b4a4 /examples/basic_completion.py
parentecf154f1b13e41644fefd3db624aae1d8c1e0d2a (diff)
parent502fdff29b755bec83808352db8777e6e1057757 (diff)
downloadcmd2-git-9c7bbfa5bdbf8c8d81c0cd3c3cd5179d700de0b2.tar.gz
Merge pull request #929 from python-cmd2/completion_docs
Completion docs
Diffstat (limited to 'examples/basic_completion.py')
-rwxr-xr-xexamples/basic_completion.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basic_completion.py b/examples/basic_completion.py
index 9523ac67..f33029c9 100755
--- a/examples/basic_completion.py
+++ b/examples/basic_completion.py
@@ -4,7 +4,7 @@
A simple example demonstrating how to enable tab completion by assigning a completer function to do_* commands.
This also demonstrates capabilities of the following completer features included with cmd2:
- CompletionError exceptions
-- delimiter_completer()
+- delimiter_complete()
- flag_based_complete() (see note below)
- index_based_complete() (see note below)