Fix doxygen of theme.h 67/237667/1
authorSangyoon Jang <jeremy.jang@samsung.com>
Thu, 2 Jul 2020 08:34:01 +0000 (17:34 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Thu, 2 Jul 2020 08:37:23 +0000 (17:37 +0900)
Change-Id: I32e96a7cf483b10c31b0e779067305c2f3a2a2a1
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
src/api/theme.h

index 0304c13..c33434f 100644 (file)
@@ -137,17 +137,18 @@ int theme_get_preview(theme_h handle, char **preview);
 int theme_get_description(theme_h handle, char **description);
 
 /**
- * @brief Gets the string corresponding with given key.
+ * @brief Gets the string corresponding to given key.
  * @since_tizen 6.0
  * @remarks You must release @a val using free().
  * @param[in]  handle     The theme information
  * @param[in]  key        String key to find information
- * @param[out] val        Value corresponding with given key
+ * @param[out] val        Value corresponding to given key
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #THEME_MANAGER_ERROR_NONE              Successful
  * @retval #THEME_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #THEME_MANAGER_ERROR_OUT_OF_MEMORY     Out of memory
+ * @retval #THEME_MANAGER_ERROR_IO_ERROR          I/O error
  */
 int theme_get_string(theme_h handle, const char *key, char **val);
 
@@ -157,7 +158,7 @@ int theme_get_string(theme_h handle, const char *key, char **val);
  * @remarks You must release @a val using free().
  * @param[in]  handle     The theme information
  * @param[in]  key        String key to find information
- * @param[out] val        Values corresponding with given key
+ * @param[out] val        Values corresponding to given key
  * @param[out] cnt        Number of returned strings
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -173,7 +174,7 @@ int theme_get_string_array(theme_h handle, const char *key,
  * @since_tizen 6.0
  * @param[in]  handle     The theme information
  * @param[in]  key        String key to find information
- * @param[out] val        Value corresponding with given key
+ * @param[out] val        Value corresponding to given key
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #THEME_MANAGER_ERROR_NONE              Successful
@@ -182,11 +183,11 @@ int theme_get_string_array(theme_h handle, const char *key,
 int theme_get_int(theme_h handle, const char *key, int *val);
 
 /**
- * @brief Gets the float corresponding with given key.
+ * @brief Gets the float corresponding to given key.
  * @since_tizen 6.0
  * @param[in]  handle     The theme information
  * @param[in]  key        String key to find information
- * @param[out] val        Value corresponding with given key
+ * @param[out] val        Value corresponding to given key
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #THEME_MANAGER_ERROR_NONE              Successful
@@ -195,11 +196,11 @@ int theme_get_int(theme_h handle, const char *key, int *val);
 int theme_get_float(theme_h handle, const char *key, float *val);
 
 /**
- * @brief Gets the boolean corresponding with given key.
+ * @brief Gets the boolean corresponding to given key.
  * @since_tizen 6.0
  * @param[in]  handle     The theme information
  * @param[in]  key        String key to find information
- * @param[out] val        Value corresponding with given key
+ * @param[out] val        Value corresponding to given key
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #THEME_MANAGER_ERROR_NONE              Successful