diff --git a/libraries/input-plugins/src/input-plugins/KeyboardMouseDevice.cpp b/libraries/input-plugins/src/input-plugins/KeyboardMouseDevice.cpp
index b1b8875804..c436a5b510 100755
--- a/libraries/input-plugins/src/input-plugins/KeyboardMouseDevice.cpp
+++ b/libraries/input-plugins/src/input-plugins/KeyboardMouseDevice.cpp
@@ -356,17 +356,17 @@ controller::Input KeyboardMouseDevice::InputDevice::makeInput(KeyboardMouseDevic
* new x-coordinate value.
*
MouseY | number | number | The mouse y-coordinate changed. The data value is its
* new y-coordinate value. |
- * MouseWheelRight | number | number | The mouse wheel rotated right. The data value
- * is the number of units rotated (typically 1.0 ). |
- * MouseWheelLeft | number | number | The mouse wheel rotated left. The data value
- * is the number of units rotated (typically 1.0 ). |
- * MouseWheelUp | number | number | The mouse wheel rotated up. The data value
- * is the number of units rotated (typically 1.0 ).
+ * |
MouseWheelRight | number | number | The mouse wheel rotated right or two-finger
+ * swipe moved right. The data value is the number of units moved (typically 1.0 ). |
+ * MouseWheelLeft | number | number | The mouse wheel rotated left or two-finger
+ * swipe moved left. The data value is the number of units moved (typically 1.0 ). |
+ * MouseWheelUp | number | number | The mouse wheel rotated up or two-finger swipe
+ * moved up. The data value is the number of units move3d (typically 1.0 ).
* Warning: The mouse wheel in an ordinary mouse generates left/right wheel events instead of
* up/down.
* |
- * MouseWheelDown | number | number | The mouse wheel rotated down. The data value
- * is the number of units rotated (typically 1.0 ).
+ * |
MouseWheelDown | number | number | The mouse wheel rotated down or two-finger
+ * swipe moved down. The data value is the number of units moved (typically 1.0 ).
* Warning: The mouse wheel in an ordinary mouse generates left/right wheel events instead of
* up/down.
* |
@@ -378,7 +378,11 @@ controller::Input KeyboardMouseDevice::InputDevice::makeInput(KeyboardMouseDevic
* moved up. The data value is how far the average position of all touch points moved.
* TouchpadDown | number | number | The average touch on a touch-enabled device
* moved down. The data value is how far the average position of all touch points moved. |
- *
+ * GesturePinchOut | number | number | The average of two touches on a touch-enabled
+ * device moved out. The data value is how far the average positions of the touch points moved out. |
+ * GesturePinchOut | number | number | The average of two touches on a touch-enabled
+ * device moved in. The data value is how far the average positions of the touch points moved in. |
+ *
*
* @typedef {object} Controller.Hardware-Keyboard
*/