From: Samuel Mannehed Date: Fri, 5 Jun 2020 13:47:56 +0000 (+0200) Subject: Fix typos in comments X-Git-Tag: v1.10.90~19 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7f76b7f1bc574cbf002bce3148c70f950e33c2f5;p=tigervnc.git Fix typos in comments --- diff --git a/vncviewer/GestureHandler.cxx b/vncviewer/GestureHandler.cxx index 8fe62baf..c3cc1531 100644 --- a/vncviewer/GestureHandler.cxx +++ b/vncviewer/GestureHandler.cxx @@ -229,7 +229,7 @@ void GestureHandler::handleTouchEnd(int id) state = GH_NOGESTURE; } - // Some gesture don't trigger until a touch is released + // Some gestures don't trigger until a touch is released if (!hasDetectedGesture()) { // Can't be a gesture that relies on movement state &= ~(GH_DRAG | GH_TWODRAG | GH_PINCH); @@ -256,7 +256,7 @@ void GestureHandler::handleTouchEnd(int id) // Waiting for all touches to release? (i.e. some tap) if (waitingRelease) { - // Were all touches release roughly the same time? + // Were all touches released at roughly the same time? if (rfb::msSince(&releaseStart) > GH_MULTITOUCH_TIMEOUT) state = GH_NOGESTURE;