summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Lalor <markwlalor@gmail.com>2018-03-11 16:41:56 -0400
committerGitHub <noreply@github.com>2018-03-11 16:41:56 -0400
commit63495dc8c79638644f7f55b4901d257aa2adb56a (patch)
treeee7fa7e465272d46fb3d641ea0d53a76492cbf0e /docs
parentf53005f9e1dc31b9a0bcfd1eed291244972c0236 (diff)
downloadcmd2-git-63495dc8c79638644f7f55b4901d257aa2adb56a.tar.gz
Fix typos in freefeatures.rst
Changed "built-in" instead of "build-in" and fixed accidental capitalization of a letter.
Diffstat (limited to 'docs')
-rw-r--r--docs/freefeatures.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/freefeatures.rst b/docs/freefeatures.rst
index f0918bba..6cebbaf3 100644
--- a/docs/freefeatures.rst
+++ b/docs/freefeatures.rst
@@ -326,8 +326,8 @@ command, then add a line of code similar to the following to your class which in
This will effectively define the ``complete_foo`` readline completer method in your class and make it utilize the same
path completion logic as the built-in commands.
-The build-in logic allows for a few more advanced path completion capabilities, such as cases where you only want to
-match directories. Suppose you have a custom command ``bar`` implemented by the ``do_bar`` method. YOu can enable
+The built-in logic allows for a few more advanced path completion capabilities, such as cases where you only want to
+match directories. Suppose you have a custom command ``bar`` implemented by the ``do_bar`` method. You can enable
path completion of directories only for this command by adding a line of code similar to the following to your class
which inherits from ``cmd2.Cmd``::