diff --git a/libevdev/libevdev.h b/libevdev/libevdev.h index 804c970..83b3dbc 100644 --- a/libevdev/libevdev.h +++ b/libevdev/libevdev.h @@ -217,17 +217,17 @@ extern "C" { * Minimum requirements * ==================== * libevdev requires a 2.6.36 kernel as minimum. Specifically, it requires - * ABS_MT_SLOT and the matching behavior. + * kernel-support for ABS_MT_SLOT. * * Event and input property names * ============================== * Event names and input property names are defined at build-time by the - * linux/input.h shipped with libevedv. - * The list of event names is compiled at build-time and thus any events not defined + * linux/input.h shipped with libevdev. + * The list of event names is compiled at build-time, any events not defined * at build time will not resolve. Specifically, - * libevdev_event_code_get_name(type, code) for an undefined type or code will + * libevdev_event_code_get_name() for an undefined type or code will * always return NULL. Likewise, libevdev_property_get_name() will return NULL - * for properties undefined on the build system. + * for properties undefined at build-time. * * Input properties * ================ @@ -242,14 +242,13 @@ extern "C" { * * MT slot behavior * ================= - * If the kernel does not support the EVIOCGMTSLOTS ioctl, libevdev continues - * as normal and assumes all values in all slots to be 0. + * If the kernel does not support the EVIOCGMTSLOTS ioctl, libevdev + * assumes all values in all slots are 0 and continues without an error. * * SYN_DROPPED behavior * ==================== - * A kernel without SYN_DROPPED, won't send the event. libevdev_next_event() + * A kernel without SYN_DROPPED won't send such an event. libevdev_next_event() * will never require the switch to sync mode. - * */ /** @@ -262,7 +261,7 @@ extern "C" { *