summaryrefslogtreecommitdiffstats
path: root/src/formats/xlsx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/formats/xlsx.c')
-rw-r--r--src/formats/xlsx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/formats/xlsx.c b/src/formats/xlsx.c
index 48e22f6..c8fe5ac 100644
--- a/src/formats/xlsx.c
+++ b/src/formats/xlsx.c
@@ -205,8 +205,8 @@ void get_sheet_data(xmlDocPtr doc, xmlDocPtr doc_strings, xmlDocPtr doc_styles)
cur_node = cur_node->xmlChildrenNode; // this is sheetdata
while (cur_node != NULL) {
- child_node = cur_node->xmlChildrenNode; // this are rows
- while (child_node != NULL) { // this are cols
+ child_node = cur_node->xmlChildrenNode; // these are rows
+ while (child_node != NULL) { // these are cols
// We get r y c
char * row = (char *) xmlGetProp(cur_node, (xmlChar *) "r");