summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Matt Colyer2008-08-14 09:27:36 -0700
committerGravatar Matt Colyer2008-08-14 09:27:36 -0700
commit7ea2be3206b949c03288d5c2707ab2d370ccea09 (patch)
treee365b1cdc59f653d7e53078437378b6749a615b6 /src
parenta641dd49bb60355c1abf87949722d0bfa63defff (diff)
downloadlibimobiledevice-7ea2be3206b949c03288d5c2707ab2d370ccea09.tar.gz
libimobiledevice-7ea2be3206b949c03288d5c2707ab2d370ccea09.tar.bz2
Minor documentation cleanup in plist.c.
Diffstat (limited to 'src')
-rw-r--r--src/plist.c6
1 files changed, 3 insertions, 3 deletions
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;