From d9bc97ac25884d92964096b49384b038a548c596 Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Tue, 11 Jun 2019 15:48:14 +0900 Subject: [PATCH] Polish sentence for describing APIs Change-Id: I81d7b9a1c2798314335ed31540b86c91280cac4c Signed-off-by: Jihoon Kim --- include/autofill_common.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/include/autofill_common.h b/include/autofill_common.h index 1ce7fca..3721f4a 100644 --- a/include/autofill_common.h +++ b/include/autofill_common.h @@ -98,7 +98,7 @@ typedef struct autofill_response_item_s *autofill_fill_response_item_h; typedef struct autofill_save_item_s *autofill_save_item_h; /** - * @brief The autofill save view information handle. + * @brief The handle of the view having autofill entries. * @since_tizen 5.5 */ typedef struct autofill_save_view_info_s *autofill_save_view_info_h; @@ -592,7 +592,7 @@ int autofill_view_info_add_item(autofill_view_info_h vi, autofill_item_h it); int autofill_view_info_foreach_item(autofill_view_info_h vi, autofill_item_cb callback, void *user_data); /** - * @brief Creates autofill save view information. + * @brief Creates the view having autofill entries. * @since_tizen 5.5 * @remarks If the function succeeds, @a vi handle must be released with autofill_save_view_info_destroy() * @param[out] vi The handle of autofill for the saving view @@ -604,7 +604,7 @@ int autofill_view_info_foreach_item(autofill_view_info_h vi, autofill_item_cb ca int autofill_save_view_info_create(autofill_save_view_info_h *vi); /** - * @brief Destroys autofill save view information. + * @brief Destroys the view having autofill entries. * @since_tizen 5.5 * @param[in] vi The autofill view info handle * @return 0 on success, otherwise a negative error value @@ -614,7 +614,7 @@ int autofill_save_view_info_create(autofill_save_view_info_h *vi); int autofill_save_view_info_destroy(autofill_save_view_info_h vi); /** - * @brief Sets the app ID in autofill save view information. + * @brief Sets the app ID in the view having autofill entries. * @since_tizen 5.5 * @param[in] vi The handle of autofill for the saving view * @param[in] app_id The app ID @@ -625,7 +625,7 @@ int autofill_save_view_info_destroy(autofill_save_view_info_h vi); int autofill_save_view_info_set_app_id(autofill_save_view_info_h vi, const char *app_id); /** - * @brief Gets the app ID from autofill save view information. + * @brief Gets the app ID from the view having autofill entries. * @since_tizen 5.5 * @remarks @a app_id must be released using free(). * @param[in] vi The handle of autofill for the saving view @@ -638,7 +638,7 @@ int autofill_save_view_info_set_app_id(autofill_save_view_info_h vi, const char int autofill_save_view_info_get_app_id(autofill_save_view_info_h vi, char **app_id); /** - * @brief Sets the view ID in autofill save view information. + * @brief Sets the view ID in the view having autofill entries. * @since_tizen 5.5 * @param[in] vi The handle of autofill for the saving view * @param[in] view_id The view ID @@ -649,7 +649,7 @@ int autofill_save_view_info_get_app_id(autofill_save_view_info_h vi, char **app_ int autofill_save_view_info_set_view_id(autofill_save_view_info_h vi, const char *view_id); /** - * @brief Gets the view ID from autofill save view information. + * @brief Gets the view ID from the view having autofill entries. * @since_tizen 5.5 * @remarks @a view_id must be released using free(). * @param[in] vi The handle of autofill for the saving view @@ -686,7 +686,7 @@ int autofill_save_view_info_set_view_title(autofill_save_view_info_h vi, const c int autofill_save_view_info_get_view_title(autofill_save_view_info_h vi, char **view_title); /** - * @brief Adds autofill save item in autofill save view information. + * @brief Adds autofill save item in the view having autofill entries. * @since_tizen 5.5 * @param[in] vi The handle of autofill for the saving view * @param[in] it The autofill save item handle @@ -697,7 +697,7 @@ int autofill_save_view_info_get_view_title(autofill_save_view_info_h vi, char ** int autofill_save_view_info_add_item(autofill_save_view_info_h vi, autofill_save_item_h it); /** - * @brief Retrieves all items in autofill save view information. + * @brief Retrieves all items in the view having autofill entries. * @since_tizen 5.5 * @param[in] vi The handle of autofill for the saving view * @param[in] callback The callback function to register -- 2.7.4