aboutsummaryrefslogtreecommitdiff
path: root/bindings/python
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-10-07 11:51:45 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-10-07 11:51:45 +0000
commit6988666289cdbe432c226868438d3005ba1f0312 (patch)
treed55f80104f401dd95fcef26378a590b0cc7dd9c4 /bindings/python
parent724d0dcc4d3765591b4586e7d064b2cba92ba43e (diff)
downloadclang_35a-6988666289cdbe432c226868438d3005ba1f0312.tar.gz
Python bindings: fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165375 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 94e8f7a3a5..8f03dd6b1b 100644
--- a/bindings/python/clang/cindex.py
+++ b/bindings/python/clang/cindex.py
@@ -654,7 +654,7 @@ CursorKind.TEMPLATE_TYPE_PARAMETER = CursorKind(27)
CursorKind.TEMPLATE_NON_TYPE_PARAMETER = CursorKind(28)
# A C++ template template parameter.
-CursorKind.TEMPLATE_TEMPLATE_PARAMTER = CursorKind(29)
+CursorKind.TEMPLATE_TEMPLATE_PARAMETER = CursorKind(29)
# A C++ function template.
CursorKind.FUNCTION_TEMPLATE = CursorKind(30)