aboutsummaryrefslogtreecommitdiff
path: root/tinywl
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2019-01-10 09:30:14 +0100
committeremersion <contact@emersion.fr>2019-01-10 09:30:14 +0100
commit0fafab87e3a557d1f785c7dcbcc900090417c232 (patch)
tree960015397a0c033184e1f2466dc21d62e85be509 /tinywl
parentfe187fc887d5b62d47e81b25cfa1a67b0fa4cc16 (diff)
Fix a few typos
Diffstat (limited to 'tinywl')
-rw-r--r--tinywl/tinywl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tinywl/tinywl.c b/tinywl/tinywl.c
index 069f6451..57ac5ccc 100644
--- a/tinywl/tinywl.c
+++ b/tinywl/tinywl.c
@@ -475,7 +475,7 @@ static void server_cursor_button(struct wl_listener *listener, void *data) {
struct tinywl_server *server =
wl_container_of(listener, server, cursor_button);
struct wlr_event_pointer_button *event = data;
- /* Notify the client with pointer focus that a button press has occured */
+ /* Notify the client with pointer focus that a button press has occurred */
wlr_seat_pointer_notify_button(server->seat,
event->time_msec, event->button, event->state);
double sx, sy;
@@ -552,7 +552,7 @@ static void render_surface(struct wlr_surface *surface,
* Those familiar with OpenGL are also familiar with the role of matricies
* in graphics programming. We need to prepare a matrix to render the view
* with. wlr_matrix_project_box is a helper which takes a box with a desired
- * x, y coodrinates, width and height, and an output geometry, then
+ * x, y coordinates, width and height, and an output geometry, then
* prepares an orthographic projection and multiplies the necessary
* transforms to produce a model-view-projection matrix.
*
@@ -717,7 +717,7 @@ static void xdg_toplevel_request_move(
* move, typically because the user clicked on their client-side
* decorations. Note that a more sophisticated compositor should check the
* provied serial against a list of button press serials sent to this
- * client, to prevent the client from requesting this whenver they want. */
+ * client, to prevent the client from requesting this whenever they want. */
struct tinywl_view *view = wl_container_of(listener, view, request_move);
begin_interactive(view, TINYWL_CURSOR_MOVE, 0);
}
@@ -728,7 +728,7 @@ static void xdg_toplevel_request_resize(
* resize, typically because the user clicked on their client-side
* decorations. Note that a more sophisticated compositor should check the
* provied serial against a list of button press serials sent to this
- * client, to prevent the client from requesting this whenver they want. */
+ * client, to prevent the client from requesting this whenever they want. */
struct wlr_xdg_toplevel_resize_event *event = data;
struct tinywl_view *view = wl_container_of(listener, view, request_resize);
begin_interactive(view, TINYWL_CURSOR_RESIZE, event->edges);