summaryrefslogtreecommitdiffstats
path: root/bindings/python
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2012-06-08 00:16:27 +0000
committerDouglas Gregor <dgregor@apple.com>2012-06-08 00:16:27 +0000
commit39a03d1015c9413226e8af20d7c00b48e7463c00 (patch)
tree2f2faaec4f601669c159446a2fcd216986fbfddc /bindings/python
parent1c6e95f152a39970dd97546304d9bd0947d94c91 (diff)
Fix typo "CursorKind.CONDITONAL_OPERATOR" in Python bindings, from
Manish Verma! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158182 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/python')
-rw-r--r--bindings/python/clang/cindex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py
index c599faa9fb..257b7aeb19 100644
--- a/bindings/python/clang/cindex.py
+++ b/bindings/python/clang/cindex.py
@@ -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.