From e4f5e7ec9005ac2f74b14ef544707285b2ee6394 Mon Sep 17 00:00:00 2001 From: Nathan Schulte Date: Sat, 3 Oct 2020 15:51:12 -0500 Subject: [PATCH] swaybar: fix typo in comment --- swaybar/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swaybar/input.c b/swaybar/input.c index 4fe6dd93..1cb1f7a4 100644 --- a/swaybar/input.c +++ b/swaybar/input.c @@ -303,7 +303,7 @@ static void wl_pointer_frame(void *data, struct wl_pointer *wl_pointer) { for (uint32_t axis = 0; axis < 2; ++axis) { if (seat->axis[axis].discrete_steps) { for (uint32_t step = 0; step < seat->axis[axis].discrete_steps; ++step) { - // Honestly, it would probabyl make sense to pass in + // Honestly, it would probably make sense to pass in // 'seat->axis[axis].value / seat->axis[axi].discrete_steps' here, // but it's only used to check whether it's positive or negative // so I don't think it's worth the risk of rounding errors.