[llvm-objcopy] [COFF] Fix a typo in a comment. NFC.
authorMartin Storsjö <martin@martin.st>
Mon, 25 Nov 2019 11:59:08 +0000 (13:59 +0200)
committerMartin Storsjö <martin@martin.st>
Wed, 27 Nov 2019 08:44:42 +0000 (10:44 +0200)
llvm/tools/llvm-objcopy/COFF/Object.h

index a6a3901..78f8da0 100644 (file)
@@ -124,7 +124,7 @@ struct Object {
 
   ArrayRef<Section> getSections() const { return Sections; }
   // This allows mutating individual Sections, but not mutating the list
-  // of symbols itself.
+  // of sections itself.
   iterator_range<std::vector<Section>::iterator> getMutableSections() {
     return make_range(Sections.begin(), Sections.end());
   }