diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2010-04-30 01:32:47 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2010-04-30 01:32:47 +0000 |
commit | 603831825b1e8f08411b4b524de900c20b562e1b (patch) | |
tree | f2983e5219fbad469b67614f3f6b2d0ddc1d8bb0 | |
parent | 545336673e148f9028093f97d118931d02b159ab (diff) | |
download | cpython-git-603831825b1e8f08411b4b524de900c20b562e1b.tar.gz |
Markup fix; clarify by adding 'in that order'
-rw-r--r-- | Doc/library/unittest.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 075c03350d..f28e73fdb4 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -273,8 +273,9 @@ The ``discover`` sub-command has the following options: -t directory Top level directory of project (default to start directory) -The -s, -p, & -t options can be passed in as positional arguments. The -following two command lines are equivalent:: +The :option:`-s`, :option:`-p`, and :option:`-t` options can be passed in +as positional arguments in that order. The following two command lines +are equivalent:: python -m unittest discover -s project_directory -p '*_test.py' python -m unittest discover project_directory '*_test.py' |