[cfe-commits] r165375 - /cfe/trunk/bindings/python/clang/cindex.py

Benjamin Kramer benny.kra at googlemail.com
Sun Oct 7 04:51:45 PDT 2012


Author: d0k
Date: Sun Oct  7 06:51:45 2012
New Revision: 165375

URL: http://llvm.org/viewvc/llvm-project?rev=165375&view=rev
Log:
Python bindings: fix typo.

Modified:
    cfe/trunk/bindings/python/clang/cindex.py

Modified: cfe/trunk/bindings/python/clang/cindex.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/bindings/python/clang/cindex.py?rev=165375&r1=165374&r2=165375&view=diff
==============================================================================
--- cfe/trunk/bindings/python/clang/cindex.py (original)
+++ cfe/trunk/bindings/python/clang/cindex.py Sun Oct  7 06:51:45 2012
@@ -654,7 +654,7 @@
 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)





More information about the cfe-commits mailing list