diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-03-11 17:02:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-11 17:02:01 -0400 |
| commit | 3780282269287cc760c01e400dec5418c482bcb0 (patch) | |
| tree | ee7fa7e465272d46fb3d641ea0d53a76492cbf0e | |
| parent | f53005f9e1dc31b9a0bcfd1eed291244972c0236 (diff) | |
| parent | 63495dc8c79638644f7f55b4901d257aa2adb56a (diff) | |
| download | cmd2-git-3780282269287cc760c01e400dec5418c482bcb0.tar.gz | |
Merge pull request #300 from MarkLalor/patch-1
Correct typos in Free Features documentation
| -rw-r--r-- | docs/freefeatures.rst | 4 |
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``:: |
