[llvm] r334627 - IR: fix documentation markup

Saleem Abdulrasool via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 13 10:51:27 PDT 2018


Author: compnerd
Date: Wed Jun 13 10:51:27 2018
New Revision: 334627

URL: http://llvm.org/viewvc/llvm-project?rev=334627&view=rev
Log:
IR: fix documentation markup

Use `\brief` instead of `\Brief`.  NFC.

Modified:
    llvm/trunk/include/llvm/IR/Attributes.h

Modified: llvm/trunk/include/llvm/IR/Attributes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Attributes.h?rev=334627&r1=334626&r2=334627&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Attributes.h (original)
+++ llvm/trunk/include/llvm/IR/Attributes.h Wed Jun 13 10:51:27 2018
@@ -465,12 +465,12 @@ public:
     return removeAttributes(C, ArgNo + FirstArgIndex);
   }
 
-  /// \Brief Add the dereferenceable attribute to the attribute set at the given
+  /// \brief Add the dereferenceable attribute to the attribute set at the given
   /// index. Returns a new list because attribute lists are immutable.
   AttributeList addDereferenceableAttr(LLVMContext &C, unsigned Index,
                                        uint64_t Bytes) const;
 
-  /// \Brief Add the dereferenceable attribute to the attribute set at the given
+  /// \brief Add the dereferenceable attribute to the attribute set at the given
   /// arg index. Returns a new list because attribute lists are immutable.
   AttributeList addDereferenceableParamAttr(LLVMContext &C, unsigned ArgNo,
                                             uint64_t Bytes) const {




More information about the llvm-commits mailing list