]> granicus.if.org Git - clang/commitdiff
update some comments.
authorChris Lattner <sabre@nondot.org>
Tue, 30 Oct 2007 17:46:51 +0000 (17:46 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 30 Oct 2007 17:46:51 +0000 (17:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43506 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/FileManager.h
include/clang/Basic/SourceManager.h

index ad955d7280788efa6cd48f7f57b2a18c2d47fc05..b37d412bc0d7c60879ce0dffc9d651d99e511818 100644 (file)
@@ -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.
index ba731589d63c1a95416685a546c04676f33552af..595a3ff8cc67401e0b6ebfa5126cabd97a551926 100644 (file)
@@ -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: