summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2015-08-12 03:21:44 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2015-08-12 03:21:44 +0000
commit0c32b0340e956a646593613bd211704da2991327 (patch)
tree58c70e7cd8449f5dfd0cb745ce5bd423e045d3e4 /include/clang-c
parent74067ba88c9ffc510b9c64d2880270ca0c3f8316 (diff)
libclang: Add period to typedef kind docblock
All of the other docblocks for the CXCursor_* cursor kind enum values include documentation that ends with a period. Add a period to the end of the CXCursor_TypedefDecl documentation to follow this convention. Patch by Brian Gesiak! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244715 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 2794965d5b..d7912ddaa8 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -1573,7 +1573,7 @@ enum CXCursorKind {
CXCursor_ObjCImplementationDecl = 18,
/** \brief An Objective-C \@implementation for a category. */
CXCursor_ObjCCategoryImplDecl = 19,
- /** \brief A typedef */
+ /** \brief A typedef. */
CXCursor_TypedefDecl = 20,
/** \brief A C++ class method. */
CXCursor_CXXMethod = 21,