diff options
author | emersion <contact@emersion.fr> | 2018-05-03 22:13:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-03 22:13:27 +0100 |
commit | d0a939243b61e596fce1a654585244209d06f042 (patch) | |
tree | 6702a3677551290f00d6bb3e6a35875004e190a5 /backend | |
parent | 093b49cb6825304ed9f7d533f34f39e31bda50b4 (diff) | |
parent | 6305e6327f6d6bf774eba938e8f7789421e1a9f2 (diff) |
Merge pull request #947 from Morganamilo/typos
Fix typos across documentation, comments and strings
Diffstat (limited to 'backend')
-rw-r--r-- | backend/drm/util.c | 2 | ||||
-rw-r--r-- | backend/libinput/backend.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backend/drm/util.c b/backend/drm/util.c index 41ba47d1..73669205 100644 --- a/backend/drm/util.c +++ b/backend/drm/util.c @@ -266,7 +266,7 @@ static bool match_obj_(struct match_state *st, size_t skips, size_t score, size_ continue; } - // Not compatable + // Not compatible if (!(st->objs[st->res[i]] & (1 << i))) { continue; } diff --git a/backend/libinput/backend.c b/backend/libinput/backend.c index 4fcd2fe4..f4d54c97 100644 --- a/backend/libinput/backend.c +++ b/backend/libinput/backend.c @@ -92,7 +92,7 @@ static bool backend_start(struct wlr_backend *_backend) { wlr_log(L_ERROR, "Failed to create input event on event loop"); return false; } - wlr_log(L_DEBUG, "libinput sucessfully initialized"); + wlr_log(L_DEBUG, "libinput successfully initialized"); return true; } |