diff options
| author | 2008-08-14 09:27:36 -0700 | |
|---|---|---|
| committer | 2008-08-14 09:27:36 -0700 | |
| commit | 7ea2be3206b949c03288d5c2707ab2d370ccea09 (patch) | |
| tree | e365b1cdc59f653d7e53078437378b6749a615b6 /src | |
| parent | a641dd49bb60355c1abf87949722d0bfa63defff (diff) | |
| download | libimobiledevice-7ea2be3206b949c03288d5c2707ab2d370ccea09.tar.gz libimobiledevice-7ea2be3206b949c03288d5c2707ab2d370ccea09.tar.bz2 | |
Minor documentation cleanup in plist.c.
Diffstat (limited to 'src')
| -rw-r--r-- | src/plist.c | 6 |
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) { | |||
| 104 | * @param name The name of the new node. | 104 | * @param name The name of the new node. |
| 105 | * @param content The string containing the text node of the new node. | 105 | * @param content The string containing the text node of the new node. |
| 106 | * @param to_node The node to attach the child node to. If none is given, the | 106 | * @param to_node The node to attach the child node to. If none is given, the |
| 107 | * root node of the given document is used. | 107 | * root node of the given document is used. |
| 108 | * @param depth The number of tabs to indent the new node. | 108 | * @param depth The number of tabs to indent the new node. |
| 109 | * | 109 | * |
| 110 | * @return The newly created node. | 110 | * @return The newly created node. |
| @@ -186,9 +186,9 @@ xmlNode *add_key_data_dict_element(xmlDocPtr plist, xmlNode *dict, const char *k | |||
| 186 | /** Reads a set of keys and strings into an array from a plist XML document. | 186 | /** Reads a set of keys and strings into an array from a plist XML document. |
| 187 | * | 187 | * |
| 188 | * @param dict The root XMLNode of a plist XML document to be read. | 188 | * @param dict The root XMLNode of a plist XML document to be read. |
| 189 | * | 189 | * |
| 190 | * @return An array where each even number is a key and the odd numbers are | 190 | * @return An array where each even number is a key and the odd numbers are |
| 191 | * values. If the odd number is \0, that's the end of the list. | 191 | * values. If the odd number is \0, that's the end of the list. |
| 192 | */ | 192 | */ |
| 193 | char **read_dict_element_strings(xmlNode *dict) { | 193 | char **read_dict_element_strings(xmlNode *dict) { |
| 194 | char **return_me = NULL, **old = NULL; | 194 | char **return_me = NULL, **old = NULL; |
