Skip to content

Commit

Permalink
util/range.c: spelling fix: inbetween
Browse files Browse the repository at this point in the history
Fixes: b439595 "range: Introduce range_inverse_array()"
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
  • Loading branch information
Michael Tokarev committed Nov 15, 2023
1 parent f0dbe42 commit f779357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/range.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void range_inverse_array(GList *in, GList **rev,
out = append_new_range(out, low, MIN(range_lob(r) - 1, high));
}

/* insert a range inbetween each original range until we reach high */
/* insert a range in between each original range until we reach high */
for (; l->next; l = l->next) {
r = (Range *)l->data;
rn = (Range *)l->next->data;
Expand Down

0 comments on commit f779357

Please sign in to comment.