r244715 - libclang: Add period to typedef kind docblock

Saleem Abdulrasool via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 11 20:21:45 PDT 2015


Author: compnerd
Date: Tue Aug 11 22:21:44 2015
New Revision: 244715

URL: http://llvm.org/viewvc/llvm-project?rev=244715&view=rev
Log:
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!

Modified:
    cfe/trunk/include/clang-c/Index.h

Modified: cfe/trunk/include/clang-c/Index.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=244715&r1=244714&r2=244715&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Tue Aug 11 22:21:44 2015
@@ -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,




More information about the cfe-commits mailing list