From b3d18e3c8d7d822921d99920304a0b16b064b82f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 18 Apr 2022 15:06:20 +0200 Subject: [PATCH] search: codespell: backards -> backwards --- search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search.c b/search.c index 58397406..9e59c618 100644 --- a/search.c +++ b/search.c @@ -440,7 +440,7 @@ search_find_next(struct terminal *term) struct coord end = start; if (backward) { - /* Search backards, until we reach the cell *after* current start */ + /* Search backwards, until we reach the cell *after* current start */ if (++end.col >= term->cols) { end.col = 0; end.row++;