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

This commit is contained in:
Martin Storsjö 2019-11-25 13:59:08 +02:00
parent 47046f05e6
commit d11dc9e77b
1 changed files with 1 additions and 1 deletions

View 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());
}