From 052f19e57218ace6b40ced58eb7778200b8278b8 Mon Sep 17 00:00:00 2001 From: ooxi Date: Sat, 18 Jan 2014 17:50:41 +0100 Subject: [PATCH] Plural of child is children, not childrens --- src/xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xml.c b/src/xml.c index 9c87069..0bd96b6 100644 --- a/src/xml.c +++ b/src/xml.c @@ -796,7 +796,7 @@ struct xml_node* xml_node_child(struct xml_node* node, size_t child) { */ struct xml_node* xml_easy_child(struct xml_node* node, uint8_t const* child_name, ...) { - /* Find childrens, one by one + /* Find children, one by one */ struct xml_node* current = node;