From b40675c701d564c3a465018950041a682401cacd Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 11 Sep 2020 11:56:01 +1000 Subject: [PATCH] doc: fix doxyen complaints after fd6c9b8ca0ec0791c Fixes fd6c9b8ca0ec0791c9aca11314bcb39f9c08555b Signed-off-by: Peter Hutterer --- libevdev/libevdev.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libevdev/libevdev.h b/libevdev/libevdev.h index ac97d9d..531207c 100644 --- a/libevdev/libevdev.h +++ b/libevdev/libevdev.h @@ -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); -- 2.34.1