Minor typo fixes in comment.

This commit is contained in:
Pascal Obry
2018-09-03 09:43:36 +02:00
committed by Damien Grauser
parent c0cf875f1b
commit 04b6bab3e5
15 changed files with 17 additions and 17 deletions

View File

@@ -155,7 +155,7 @@ RideFile *TxtFileReader::openRideFile(QFile &file, QStringList &errors, QList<Ri
while (!is.atEnd()) {
// the readLine() method doesn't handle old Macintosh CR line endings
// this workaround will load the the entire file if it has CR endings
// this workaround will load the entire file if it has CR endings
// then split and loop through each line
// otherwise, there will be nothing to split and it will read each line as expected.
QString linesIn = is.readLine();