diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2018-06-13 17:51:27 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2018-06-13 17:51:27 +0000 |
commit | 4d1c85488418e1b0516e22d8856d263cfadf7ad8 (patch) | |
tree | 54bf4b0a36aa1589b83860b8c66004c67d998800 | |
parent | 61631b1b8f20faef82b0b02ee66481f4c015c02b (diff) | |
download | llvm-4d1c85488418e1b0516e22d8856d263cfadf7ad8.zip llvm-4d1c85488418e1b0516e22d8856d263cfadf7ad8.tar.gz llvm-4d1c85488418e1b0516e22d8856d263cfadf7ad8.tar.bz2 |
IR: fix documentation markup
Use `\brief` instead of `\Brief`. NFC.
llvm-svn: 334627
-rw-r--r-- | llvm/include/llvm/IR/Attributes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/IR/Attributes.h b/llvm/include/llvm/IR/Attributes.h index 4f0667f..5aaaaf3 100644 --- a/llvm/include/llvm/IR/Attributes.h +++ b/llvm/include/llvm/IR/Attributes.h @@ -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 { |