diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-12-01 00:48:27 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-12-01 00:48:51 -0500 |
commit | d980f7ffa38d0f455cc24950ba47fd7a353c1074 (patch) | |
tree | 034ea5824df2d25f9bebea3b5017a6dc66069006 /libdimension | |
parent | f309440cc76eed5f9ba0b6f7d94beea6b1c11761 (diff) | |
download | dimension-d980f7ffa38d0f455cc24950ba47fd7a353c1074.tar.xz |
Fix parameter documentation for dmnsn_add_map_entry().
Diffstat (limited to 'libdimension')
-rw-r--r-- | libdimension/dimension/map.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdimension/dimension/map.h b/libdimension/dimension/map.h index 5e7134d..e0a67c1 100644 --- a/libdimension/dimension/map.h +++ b/libdimension/dimension/map.h @@ -49,9 +49,9 @@ void dmnsn_delete_map(dmnsn_map *map); /** * Add an entry (a scalar-object pair) to a color map. - * @param[in,out] map The color map to add to. - * @param[in] n The index of the entry. - * @param[in] object The value of the entry. + * @param[in,out] map The color map to add to. + * @param[in] n The index of the entry. + * @param[in] obj The value of the entry. */ void dmnsn_add_map_entry(dmnsn_map *map, double n, const void *obj); |