From: Brian Gesiak Date: Tue, 26 Jun 2018 20:05:18 +0000 (+0000) Subject: [AST] Fix typo in LazyOffsetPtr::get docs (NFC) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=495d25c4469822341840cb74ac457c8bcd19c42c;p=clang [AST] Fix typo in LazyOffsetPtr::get docs (NFC) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@335655 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/ExternalASTSource.h b/include/clang/AST/ExternalASTSource.h index 1e05a309af..82255bb1c4 100644 --- a/include/clang/AST/ExternalASTSource.h +++ b/include/clang/AST/ExternalASTSource.h @@ -393,7 +393,7 @@ public: /// Whether this pointer is currently stored as an offset. bool isOffset() const { return Ptr & 0x01; } - /// Retrieve the pointer to the AST node that this lazy pointer + /// Retrieve the pointer to the AST node that this lazy pointer points to. /// /// \param Source the external AST source. ///