summaryrefslogtreecommitdiffstats
path: root/bindings/python
diff options
context:
space:
mode:
authorArnaud A. de Grandmaison <arnaud.adegm@gmail.com>2012-07-06 08:22:05 +0000
committerArnaud A. de Grandmaison <arnaud.adegm@gmail.com>2012-07-06 08:22:05 +0000
commit577c530fe29b6fc8f65ef0ff5b9f194a51a68d82 (patch)
tree78e440debe38bcbd71263e2ae9ed6e0a0aaed159 /bindings/python
parent28c82ee1aee75bfe4e700b97b01891f80c076d19 (diff)
[cindex.py] Fix erroneous comment for CompileCommands
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159810 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/python')
-rw-r--r--bindings/python/clang/cindex.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py
index 1a471cd6c8..afbfe3d2ae 100644
--- a/bindings/python/clang/cindex.py
+++ b/bindings/python/clang/cindex.py
@@ -2140,9 +2140,7 @@ class CompileCommand(object):
Get an iterable object providing each argument in the
command line for the compiler invocation as a _CXString.
- Invariants :
- - the first argument is the compiler executable
- - the last argument is the file being compiled
+ Invariant : the first argument is the compiler executable
"""
length = CompileCommand_getNumArgs(self.cmd)
for i in xrange(length):