diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-31 16:54:26 +0200 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-31 16:54:26 +0200 | 
| commit | 94c19497f4d163f86e20dbce9e6a03d62a576c23 (patch) | |
| tree | 4d03313c13d37f0458f813f14b292c387c261fb5 /src | |
| parent | 6da2cc533eacdbe983a0e539da1092071ea750e6 (diff) | |
| download | edoors-94c19497f4d163f86e20dbce9e6a03d62a576c23.zip edoors-94c19497f4d163f86e20dbce9e6a03d62a576c23.tar.gz | |
eiotas_particle.h: fix documentation
Diffstat (limited to 'src')
| -rw-r--r-- | src/include/eiotas_particle.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/include/eiotas_particle.h b/src/include/eiotas_particle.h index 26489aa..c683a4b 100644 --- a/src/include/eiotas_particle.h +++ b/src/include/eiotas_particle.h @@ -119,7 +119,7 @@ EAPI void eiotas_particle_link_fields_set(Eiotas_Particle *particle, const char   * @brief Restore the data associated to a given key   *   * @param particle The @ref Eiotas_Particle to restore data from - * @param key The @ref Eina_Hash key + * @param key The Eina_Hash key   *   * @return The data stored on success, NULL otherwise.   */ @@ -129,10 +129,10 @@ EAPI const char* eiotas_particle_data_get(Eiotas_Particle *particle, const char   * @brief Store a key:value data couple into the Eiotas_Particle   *   * @param particle The @ref Eiotas_Particle to store data into - * @param key The @ref Eina_Hash key + * @param key The Eina_Hash key   * @param value The value to store   * - * @return @ref EINA_FALSE if an error occurred, @ref EINA_TRUE otherwise. + * @return EINA_FALSE if an error occurred, EINA_TRUE otherwise.   */  EAPI Eina_Bool eiotas_particle_data_set(Eiotas_Particle *particle, const char *key, const char *value); @@ -140,9 +140,9 @@ EAPI Eina_Bool eiotas_particle_data_set(Eiotas_Particle *particle, const char *k   * @brief Delete the data associated to a given key   *   * @param particle The @ref Eiotas_Particle to delete data from - * @param key The @ref Eina_Hash key + * @param key The Eina_Hash key   * - * @return @ref EINA_FALSE if an error occurred, @ref EINA_TRUE otherwise. + * @return EINA_FALSE if an error occurred, EINA_TRUE otherwise.   */  EAPI Eina_Bool eiotas_particle_data_del(Eiotas_Particle *particle, const char *key); | 
