doc: fix doxyen complaints after fd6c9b8ca0ec0791c
authorPeter Hutterer <peter.hutterer@who-t.net>
Fri, 11 Sep 2020 01:56:01 +0000 (11:56 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Fri, 11 Sep 2020 02:13:04 +0000 (12:13 +1000)
Fixes fd6c9b8ca0ec0791c9aca11314bcb39f9c08555b

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
libevdev/libevdev.h

index ac97d9d..531207c 100644 (file)
@@ -1704,7 +1704,7 @@ int libevdev_get_current_slot(const struct libevdev *dev);
  *
  * @param dev The evdev device, already initialized with libevdev_set_fd()
  * @param code One of ABS_X, ABS_Y, ...
- * @param min The new minimum for this axis
+ * @param val The new minimum for this axis
  */
 void libevdev_set_abs_minimum(struct libevdev *dev, unsigned int code, int val);
 
@@ -1717,7 +1717,7 @@ void libevdev_set_abs_minimum(struct libevdev *dev, unsigned int code, int val);
  *
  * @param dev The evdev device, already initialized with libevdev_set_fd()
  * @param code One of ABS_X, ABS_Y, ...
- * @param max The new maxium for this axis
+ * @param val The new maxium for this axis
  */
 void libevdev_set_abs_maximum(struct libevdev *dev, unsigned int code, int val);
 
@@ -1730,7 +1730,7 @@ void libevdev_set_abs_maximum(struct libevdev *dev, unsigned int code, int val);
  *
  * @param dev The evdev device, already initialized with libevdev_set_fd()
  * @param code One of ABS_X, ABS_Y, ...
- * @param fuzz The new fuzz for this axis
+ * @param val The new fuzz for this axis
  */
 void libevdev_set_abs_fuzz(struct libevdev *dev, unsigned int code, int val);
 
@@ -1743,7 +1743,7 @@ void libevdev_set_abs_fuzz(struct libevdev *dev, unsigned int code, int val);
  *
  * @param dev The evdev device, already initialized with libevdev_set_fd()
  * @param code One of ABS_X, ABS_Y, ...
- * @param flat The new flat for this axis
+ * @param val The new flat for this axis
  */
 void libevdev_set_abs_flat(struct libevdev *dev, unsigned int code, int val);
 
@@ -1756,7 +1756,7 @@ void libevdev_set_abs_flat(struct libevdev *dev, unsigned int code, int val);
  *
  * @param dev The evdev device, already initialized with libevdev_set_fd()
  * @param code One of ABS_X, ABS_Y, ...
- * @param resolution The new axis resolution
+ * @param val The new axis resolution
  */
 void libevdev_set_abs_resolution(struct libevdev *dev, unsigned int code, int val);