Updated up to 8 comments in all language versions, but somewhat differently in each language.

This commit is contained in:
Project Nayuki
2018-08-28 21:08:00 +00:00
parent b9f69cf7bd
commit 3ead3dbb84
11 changed files with 71 additions and 75 deletions
+2 -2
View File
@@ -360,8 +360,8 @@ void QrCode::drawCodewords(const vector<uint8_t> &data) {
modules.at(y).at(x) = getBit(data.at(i >> 3), 7 - static_cast<int>(i & 7));
i++;
}
// If there are any remainder bits (0 to 7), they are already
// set to 0/false/white when the grid of modules was initialized
// If this QR Code has any remainder bits (0 to 7), they were assigned as
// 0/false/white by the constructor and are left unchanged by this method
}
}
}