From e6ddd7f610cf6caf3b5691b0f3d60e00e8c95741 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sat, 19 Oct 2013 16:14:07 +0000 Subject: [PATCH] This should use the possessive adjective. 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 | 2 +- include/clang/AST/Redeclarable.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h index c5ccc2f41b..716b885327 100644 --- a/include/clang/AST/DeclBase.h +++ b/include/clang/AST/DeclBase.h @@ -786,7 +786,7 @@ public: return const_cast(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; } diff --git a/include/clang/AST/Redeclarable.h b/include/clang/AST/Redeclarable.h index 106b6301ae..cfe5a90be0 100644 --- a/include/clang/AST/Redeclarable.h +++ b/include/clang/AST/Redeclarable.h @@ -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. -- 2.50.1