From 7ea2be3206b949c03288d5c2707ab2d370ccea09 Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Thu, 14 Aug 2008 09:27:36 -0700 Subject: Minor documentation cleanup in plist.c. --- src/plist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/plist.c b/src/plist.c index e0ca653..e64cff2 100644 --- a/src/plist.c +++ b/src/plist.c @@ -104,7 +104,7 @@ void free_plist(xmlDocPtr plist) { * @param name The name of the new node. * @param content The string containing the text node of the new node. * @param to_node The node to attach the child node to. If none is given, the - * root node of the given document is used. + * root node of the given document is used. * @param depth The number of tabs to indent the new node. * * @return The newly created node. @@ -186,9 +186,9 @@ xmlNode *add_key_data_dict_element(xmlDocPtr plist, xmlNode *dict, const char *k /** Reads a set of keys and strings into an array from a plist XML document. * * @param dict The root XMLNode of a plist XML document to be read. - * + * * @return An array where each even number is a key and the odd numbers are - * values. If the odd number is \0, that's the end of the list. + * values. If the odd number is \0, that's the end of the list. */ char **read_dict_element_strings(xmlNode *dict) { char **return_me = NULL, **old = NULL; -- cgit v1.1-32-gdbae