spelling fixes (#9801)

45 corrections in c++ source comments
limited to 27 files in src/gps src/graphics src/input
This commit is contained in:
Larry Doolittle
2026-03-04 16:36:53 +11:00
committed by GitHub
parent 1e34c1ef1b
commit deb45e471c
27 files changed
+61 -61

No files matched your search

+2 -2
View File
@@ -43,7 +43,7 @@ int32_t TouchScreenBase::runOnce()
// process touch events
int16_t x, y;
bool touched = getTouch(x, y);
if (x < 0 || y < 0) // T-deck can emit phantom touch events with a negative value when turing off the screen
if (x < 0 || y < 0) // T-deck can emit phantom touch events with a negative value when turning off the screen
touched = false;
if (touched) {
this->setInterval(20);
@@ -123,7 +123,7 @@ int32_t TouchScreenBase::runOnce()
}
}
#else
// fire TAP event when no 2nd tap occured within time
// fire TAP event when no 2nd tap occurred within time
if (_tapped) {
_tapped = false;
e.touchEvent = static_cast<char>(TOUCH_ACTION_TAP);