Corrects typos and grammatical errors

Improves readability across documentation and inline comments by fixing common spelling mistakes and duplicate words.
This commit is contained in:
Mark Jocas
2026-05-20 08:33:48 +02:00
parent 39b333656b
commit 63fe3d42a2
10 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -846,7 +846,7 @@ void OLEDDisplay::drawLogBuffer(uint16_t xMove, uint16_t yMove) {
if (this->logBuffer[i] == 10) {
length++;
// Draw string on line `line` from lastPos to length
// Passing 0 as the lenght because we are in TEXT_ALIGN_LEFT
// Passing 0 as the length because we are in TEXT_ALIGN_LEFT
drawStringInternal(xMove, yMove + (line++) * lineHeight, &this->logBuffer[lastPos], length, 0, false);
// Remember last pos
lastPos = i;