[PECOFF] Fix comment.
authorRui Ueyama <ruiu@google.com>
Mon, 15 Jul 2013 21:00:53 +0000 (21:00 +0000)
committerRui Ueyama <ruiu@google.com>
Mon, 15 Jul 2013 21:00:53 +0000 (21:00 +0000)
llvm-svn: 186346

lld/lib/ReaderWriter/PECOFF/WriterPECOFF.cpp

index 58112fe..62ea7c7 100644 (file)
@@ -604,9 +604,9 @@ public:
   /// page.
   ///
   /// By dividing 32 bit RVAs into blocks, COFF saves disk and memory space for
-  /// the base relocation. A block consists with a 32 bit page RVA and 16 bit
-  /// relocation entries which represent offsets in the page. That is a compact
-  /// represetation than a simple vector of 32 bit RVAs.
+  /// the base relocation. A block consists of a 32 bit page RVA and 16 bit
+  /// relocation entries which represent offsets in the page. That is a more
+  /// compact representation than a simple vector of 32 bit RVAs.
   void setContents(ChunkVectorT &chunks) {
     std::vector<uint64_t> relocSites = listRelocSites(chunks);
     PageOffsetT blocks = groupByPage(relocSites);