From: Chris Lattner Date: Tue, 30 Oct 2007 17:46:51 +0000 (+0000) Subject: update some comments. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f17765d202d1ec34ada7ff3f18d18731588143c2;p=clang update some comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43506 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/FileManager.h b/include/clang/Basic/FileManager.h index ad955d7280..b37d412bc0 100644 --- a/include/clang/Basic/FileManager.h +++ b/include/clang/Basic/FileManager.h @@ -36,7 +36,7 @@ public: /// FileEntry - Cached information about one file on the disk. /// class FileEntry { - const char *Name; // Name of the directory. + const char *Name; // Name of the file. off_t Size; // File size in bytes. time_t ModTime; // Modification time of file. const DirectoryEntry *Dir; // Directory file lives in. diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h index ba731589d6..595a3ff8cc 100644 --- a/include/clang/Basic/SourceManager.h +++ b/include/clang/Basic/SourceManager.h @@ -81,7 +81,7 @@ namespace SrcMgr { /// chunk number of this FileID. unsigned ChunkNo; - /// FileInfo - Information about the source buffer itself. + /// Info - Information about the source buffer itself. /// const InfoRec *Info; public: