correct some harmless c&p errors

This commit is contained in:
Bill Currie 2006-12-18 13:11:26 +00:00 committed by Jeff Teunissen
parent 809ce1fb82
commit 961f30f846

View file

@ -156,8 +156,7 @@ const char *PL_String (plitem_t *string);
*/ */
plitem_t *PL_ObjectForKey (plitem_t *dict, const char *key); plitem_t *PL_ObjectForKey (plitem_t *dict, const char *key);
/** Remove a value from an array object. /** Remove a value from a dictionary object.
The array items will be shuffled to fill the resulting hole.
\param dict The Dictionary to remove the value from \param dict The Dictionary to remove the value from
\param key The unique key associated with the value to be removed \param key The unique key associated with the value to be removed
@ -165,7 +164,7 @@ plitem_t *PL_ObjectForKey (plitem_t *dict, const char *key);
isn't a dictionary. isn't a dictionary.
\note You are responsible for freeing the returned object. \note You are responsible for freeing the returned object.
*/ */
plitem_t *PL_RemoveObjectForKey (plitem_t *array, const char *key); plitem_t *PL_RemoveObjectForKey (plitem_t *dict, const char *key);
/** Retrieve a value from an array object. /** Retrieve a value from an array object.