summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse <jessegielen@hotmail.com>2019-06-04 23:44:42 +0200
committerGitHub <noreply@github.com>2019-06-04 23:44:42 +0200
commit8129f3b2566f05ecb729d806f4af8401ccac2f74 (patch)
tree89af2d991f2d36d5e2aaa54d22234f91f991b6dc
parentdb7e79e78df07723dd07c8d00283244092dd8816 (diff)
downloadxorg-lib-libxkbcommon-8129f3b2566f05ecb729d806f4af8401ccac2f74.tar.gz
Fix some doc typos
-rw-r--r--xkbcommon/xkbcommon.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xkbcommon/xkbcommon.h b/xkbcommon/xkbcommon.h
index c28123f..4576330 100644
--- a/xkbcommon/xkbcommon.h
+++ b/xkbcommon/xkbcommon.h
@@ -1271,7 +1271,7 @@ enum xkb_state_component {
XKB_STATE_MODS_LOCKED = (1 << 2),
/** Effective modifiers, i.e. currently active and affect key
* processing (derived from the other state components).
- * Use this unless you explictly care how the state came about. */
+ * Use this unless you explicitly care how the state came about. */
XKB_STATE_MODS_EFFECTIVE = (1 << 3),
/** Depressed layout, i.e. a key is physically holding it. */
XKB_STATE_LAYOUT_DEPRESSED = (1 << 4),
@@ -1283,7 +1283,7 @@ enum xkb_state_component {
XKB_STATE_LAYOUT_LOCKED = (1 << 6),
/** Effective layout, i.e. currently active and affects key processing
* (derived from the other state components).
- * Use this unless you explictly care how the state came about. */
+ * Use this unless you explicitly care how the state came about. */
XKB_STATE_LAYOUT_EFFECTIVE = (1 << 7),
/** LEDs (derived from the other state components). */
XKB_STATE_LEDS = (1 << 8)
@@ -1294,10 +1294,10 @@ enum xkb_state_component {
* released.
*
* This entry point is intended for programs which track the keyboard state
- * explictly (like an evdev client). If the state is serialized to you by
+ * explicitly (like an evdev client). If the state is serialized to you by
* a master process (like a Wayland compositor) using functions like
* xkb_state_serialize_mods(), you should use xkb_state_update_mask() instead.
- * The two functins should not generally be used together.
+ * The two functions should not generally be used together.
*
* A series of calls to this function should be consistent; that is, a call
* with XKB_KEY_DOWN for a key should be matched by an XKB_KEY_UP; if a key