mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
correct some harmless c&p errors
This commit is contained in:
parent
809ce1fb82
commit
961f30f846
1 changed files with 2 additions and 3 deletions
|
@ -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.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue