From e3b6ee66eff42082b5ff3edd450129311023d336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Thu, 28 Nov 2019 17:59:06 +0100 Subject: [PATCH] Fix typo in comment --- gds-utils/gds-parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gds-utils/gds-parser.c b/gds-utils/gds-parser.c index f16f22b..ff96669 100644 --- a/gds-utils/gds-parser.c +++ b/gds-utils/gds-parser.c @@ -597,7 +597,7 @@ static void convert_aref_to_sref(struct gds_cell_array_instance *aref, struct gd /* Iterate over columns and rows */ for (col = 0; col < aref->columns; col++) { for (row = 0; row < aref->rows; row++) { - /* Create new instance for this row/column and aconfigure data */ + /* Create new instance for this row/column and configure data */ container_cell->child_cells = append_cell_ref(container_cell->child_cells, &sref_inst); if (!sref_inst) { GDS_ERROR("Appending cell ref failed!");