From: Benjamin Kramer Date: Sun, 7 Oct 2012 11:51:45 +0000 (+0000) Subject: Python bindings: fix typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6988666289cdbe432c226868438d3005ba1f0312;p=clang Python bindings: fix typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165375 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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)