From: Ben Pfaff Date: Fri, 1 Jan 2021 06:09:44 +0000 (-0800) Subject: pivot-output: Fix typo in comment. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2dbe538ca8012aa7a59fa91993ab25cc3706e50d;p=pspp pivot-output: Fix typo in comment. --- diff --git a/src/output/pivot-output.c b/src/output/pivot-output.c index 8cde929c50..665747246a 100644 --- a/src/output/pivot-output.c +++ b/src/output/pivot-output.c @@ -44,7 +44,7 @@ find_category (const struct pivot_dimension *d, int dim_index, for (const struct pivot_category *c = d->presentation_leaves[index]; c; c = c->parent) { - /* A category can covert multiple rows. Only return the category for its + /* A category can cover multiple rows. Only return the category for its top row. */ if (row_ofs == c->extra_depth) return c;