search: codespell: backards -> backwards

This commit is contained in:
Daniel Eklöf 2022-04-18 15:06:20 +02:00
parent 006c75d2d3
commit b3d18e3c8d
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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++;