Proofreading (#1155)

---------

Co-authored-by: Urs Fleisch <ufleisch@users.sourceforge.net>
This commit is contained in:
nmariusp
2023-10-08 06:58:33 +03:00
committed by GitHub
parent 2e3a66cc31
commit 3f25d3c342
12 changed files with 27 additions and 29 deletions

View File

@ -322,7 +322,7 @@ ByteVector Ogg::XiphComment::render(bool addFramingBit) const
ByteVector data;
// Add the vendor ID length and the vendor ID. It's important to use the
// length of the data(String::UTF8) rather than the length of the the string
// length of the data(String::UTF8) rather than the length of the string
// since this is UTF8 text and there may be more characters in the data than
// in the UTF16 string.
@ -335,7 +335,7 @@ ByteVector Ogg::XiphComment::render(bool addFramingBit) const
data.append(ByteVector::fromUInt(fieldCount(), false));
// Iterate over the the field lists. Our iterator returns a
// Iterate over the field lists. Our iterator returns a
// std::pair<String, StringList> where the first String is the field name and
// the StringList is the values associated with that field.