]> granicus.if.org Git - clang/commitdiff
This should use the possessive adjective.
authorRafael Espindola <rafael.espindola@gmail.com>
Sat, 19 Oct 2013 16:14:07 +0000 (16:14 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Sat, 19 Oct 2013 16:14:07 +0000 (16:14 +0000)
Thanks to David Blaikie for noticing it.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@193037 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/DeclBase.h
include/clang/AST/Redeclarable.h

index c5ccc2f41b79548efe93c85e6befc8569fc3ac42..716b8853273059d8bfe4a91d7ec3abebd524c2a8 100644 (file)
@@ -786,7 +786,7 @@ public:
     return const_cast<Decl *>(this)->getPreviousDeclImpl();
   }
 
-  /// \brief True if this is the first declaration in it's redeclaration chain.
+  /// \brief True if this is the first declaration in its redeclaration chain.
   bool isFirstDecl() const {
     return getPreviousDecl() == 0;
   }
index 106b6301ae754ccbd66b2bb4cd86af0d33f9ee03..cfe5a90be0d5ab6638500478bb716c144e3b8dd9 100644 (file)
@@ -91,7 +91,7 @@ public:
     return D;
   }
 
-  /// \brief True if this is the first declaration in it's redeclaration chain.
+  /// \brief True if this is the first declaration in its redeclaration chain.
   bool isFirstDecl() const { return RedeclLink.NextIsLatest(); }
 
   /// \brief Returns the most recent (re)declaration of this declaration.