diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 11:09:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 11:09:59 (GMT) |
commit | ed86ff868a7e6410dbe1f7e77c4f318b813c2503 (patch) | |
tree | 1f06f355d46659c24bbfbeb2a831cceeef5a9c44 | |
parent | e47e184c4a383bcf5f73b23b5553b737969d1928 (diff) | |
download | cpython-ed86ff868a7e6410dbe1f7e77c4f318b813c2503.zip cpython-ed86ff868a7e6410dbe1f7e77c4f318b813c2503.tar.gz cpython-ed86ff868a7e6410dbe1f7e77c4f318b813c2503.tar.bz2 |
Fix missing class name in markup. Found by Tanky Woo on docs@.
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 2f341b7..deb07fa 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1696,7 +1696,7 @@ Argument groups Mutual exclusion ^^^^^^^^^^^^^^^^ -.. method:: add_mutually_exclusive_group(required=False) +.. method:: ArgumentParser.add_mutually_exclusive_group(required=False) Create a mutually exclusive group. :mod:`argparse` will make sure that only one of the arguments in the mutually exclusive group was present on the |