diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2014-04-06 17:59:47 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2014-04-06 17:59:47 (GMT) |
commit | f5c34054f9ea1fbdaeafdcf1a6f17f64f4dfed63 (patch) | |
tree | 4a2996c2644069eef8be27d1fc5f6902878ff2e7 | |
parent | 7e90bc4433f8cdf49168d06db94b1f6b9795fa86 (diff) | |
download | cpython-f5c34054f9ea1fbdaeafdcf1a6f17f64f4dfed63.zip cpython-f5c34054f9ea1fbdaeafdcf1a6f17f64f4dfed63.tar.gz cpython-f5c34054f9ea1fbdaeafdcf1a6f17f64f4dfed63.tar.bz2 |
minor docfix (reported at docs@python.org) trace.py argument is --count not --counts
-rw-r--r-- | Doc/library/trace.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst index 1e3f5c3..b0ac812 100644 --- a/Doc/library/trace.rst +++ b/Doc/library/trace.rst @@ -41,8 +41,8 @@ Main options At least one of the following options must be specified when invoking :mod:`trace`. The :option:`--listfuncs <-l>` option is mutually exclusive with -the :option:`--trace <-t>` and :option:`--counts <-c>` options. When -:option:`--listfuncs <-l>` is provided, neither :option:`--counts <-c>` nor +the :option:`--trace <-t>` and :option:`--count <-c>` options. When +:option:`--listfuncs <-l>` is provided, neither :option:`--count <-c>` nor :option:`--trace <-t>` are accepted, and vice versa. .. program:: trace |