From b637cb290caad4bafb9aa888a06e6ed74a440d4f Mon Sep 17 00:00:00 2001 From: Nick McIntyre Date: Wed, 3 Apr 2024 04:01:25 -0500 Subject: [PATCH] Fix typo in touchStarted() --- src/events/touch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events/touch.js b/src/events/touch.js index c94d3adf8a..36efa73661 100644 --- a/src/events/touch.js +++ b/src/events/touch.js @@ -163,7 +163,7 @@ function getTouchInfo(canvas, w, h, e, i = 0) { * On touchscreen devices, mousePressed() will * run when a user’s touch starts if `touchStarted()` isn’t declared. If * `touchStarted()` is declared, then `touchStarted()` will run when a user’s - * touch ends and mousePressed() won’t. + * touch starts and mousePressed() won’t. * * Note: `touchStarted()`, touchEnded(), and * touchMoved() are all related.