diff options
author | Alp Toker <alp@nuanti.com> | 2014-05-05 04:42:26 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-05-05 04:42:26 +0000 |
commit | d29607871f661c9cde7f60fbf3adeae4fb6d82bc (patch) | |
tree | a58a5adbcdf126a547d6780f35d023b140f6d9c5 /clang/bindings/python/examples/cindex/cindex-dump.py | |
parent | 777fce64cc00c610d831808a2d3ed64c58608a89 (diff) | |
download | bcm5719-llvm-d29607871f661c9cde7f60fbf3adeae4fb6d82bc.tar.gz bcm5719-llvm-d29607871f661c9cde7f60fbf3adeae4fb6d82bc.zip |
cindex-dump.py: fix the --show-ids description string
It looks like this was botched back in r94936.
llvm-svn: 207947
Diffstat (limited to 'clang/bindings/python/examples/cindex/cindex-dump.py')
-rw-r--r-- | clang/bindings/python/examples/cindex/cindex-dump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/bindings/python/examples/cindex/cindex-dump.py b/clang/bindings/python/examples/cindex/cindex-dump.py index 99d03906c52..5556ad121a3 100644 --- a/clang/bindings/python/examples/cindex/cindex-dump.py +++ b/clang/bindings/python/examples/cindex/cindex-dump.py @@ -63,7 +63,7 @@ def main(): parser = OptionParser("usage: %prog [options] {filename} [clang-args*]") parser.add_option("", "--show-ids", dest="showIDs", - help="Don't compute cursor IDs (very slow)", + help="Compute cursor IDs (very slow)", action="store_true", default=False) parser.add_option("", "--max-depth", dest="maxDepth", help="Limit cursor expansion to depth N", |