From 41987537cf04ee88dcfd55a236a5eb718c738eb0 Mon Sep 17 00:00:00 2001 From: Piotr Kocia Date: Mon, 31 Mar 2025 23:28:21 +0200 Subject: [PATCH] comment fixes --- render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render.c b/render.c index 6ae3e6e7..220176b9 100644 --- a/render.c +++ b/render.c @@ -691,7 +691,7 @@ static bool is_cell_highlighted(struct terminal* const term, struct highlight_location const* location = term->vimode.highlights; int const row_abs = grid_row_absolute_in_view(term->grid, cell.row); while(location != NULL) { - // End the search early if we are past the possible locations. + // End the search early if we are past the our row. if(location->range.start.row > row_abs) { break; }