]> granicus.if.org Git - clang/commitdiff
Fix typo "CursorKind.CONDITONAL_OPERATOR" in Python bindings, from
authorDouglas Gregor <dgregor@apple.com>
Fri, 8 Jun 2012 00:16:27 +0000 (00:16 +0000)
committerDouglas Gregor <dgregor@apple.com>
Fri, 8 Jun 2012 00:16:27 +0000 (00:16 +0000)
Manish Verma!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158182 91177308-0d34-0410-b5e6-96231b3b80d8

bindings/python/clang/cindex.py

index c599faa9fb6510f0d614d4ada288964a00c327fa..257b7aeb19f19515d353a0fb80e0be1a68234950 100644 (file)
@@ -677,7 +677,7 @@ CursorKind.BINARY_OPERATOR = CursorKind(114)
 CursorKind.COMPOUND_ASSIGNMENT_OPERATOR = CursorKind(115)
 
 # The ?: ternary operator.
-CursorKind.CONDITONAL_OPERATOR = CursorKind(116)
+CursorKind.CONDITIONAL_OPERATOR = CursorKind(116)
 
 # An explicit cast in C (C99 6.5.4) or a C-style cast in C++
 # (C++ [expr.cast]), which uses the syntax (Type)expr.