r193037 - This should use the possessive adjective.

Rafael Espindola rafael.espindola at gmail.com
Sat Oct 19 09:14:07 PDT 2013


Author: rafael
Date: Sat Oct 19 11:14:07 2013
New Revision: 193037

URL: http://llvm.org/viewvc/llvm-project?rev=193037&view=rev
Log:
This should use the possessive adjective.

Thanks to David Blaikie for noticing it.

Modified:
    cfe/trunk/include/clang/AST/DeclBase.h
    cfe/trunk/include/clang/AST/Redeclarable.h

Modified: cfe/trunk/include/clang/AST/DeclBase.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclBase.h?rev=193037&r1=193036&r2=193037&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/DeclBase.h (original)
+++ cfe/trunk/include/clang/AST/DeclBase.h Sat Oct 19 11:14:07 2013
@@ -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;
   }

Modified: cfe/trunk/include/clang/AST/Redeclarable.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Redeclarable.h?rev=193037&r1=193036&r2=193037&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Redeclarable.h (original)
+++ cfe/trunk/include/clang/AST/Redeclarable.h Sat Oct 19 11:14:07 2013
@@ -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.





More information about the cfe-commits mailing list