Commit d11dc9e7 authored by Martin Storsjö's avatar Martin Storsjö
Browse files

[llvm-objcopy] [COFF] Fix a typo in a comment. NFC.

parent 47046f05
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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());
  }