From 2c49693c65deda8f27c642ee01109a259dd3b3b1 Mon Sep 17 00:00:00 2001 From: Ilho Kim Date: Tue, 3 Sep 2019 15:58:51 +0900 Subject: [PATCH] Fix documentation typo, better expression Change-Id: I6dd63400b29c475cc200c16ee879d13208259033 Signed-off-by: Ilho Kim --- include/package_info.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/package_info.h b/include/package_info.h index 0573b03..140fe1b 100644 --- a/include/package_info.h +++ b/include/package_info.h @@ -116,8 +116,8 @@ typedef enum { * @param[in] user_data The user data passed from the foreach function * @return @c true to continue with the next iteration of the loop, * otherwise @c false to break out of the loop - * @pre package_info_updateinfo_foreach_updateinfo() will invoke this callback. - * @see package_info_updateinfo_foreach_updateinfo() + * @pre package_info_updateinfo_foreach_info() will invoke this callback. + * @see package_info_updateinfo_foreach_info() */ typedef bool (*package_info_updateinfo_cb) (package_updateinfo_h info, void *user_data); @@ -523,7 +523,7 @@ int package_info_foreach_privilege_info(package_info_h package_info, package_inf * A --> B means that A depends on B. * When package_info_foreach_dependency_info(A) is called, the callback results in two parameters: @a from is A and @a to is B. * @since_tizen 5.5 - * @remarks The function provides the results synchronously. If there are no dependencies, this function will return PACKAGE_MANAGER_ERROR_NONE immediately and the callback will not be invoked. + * @remarks The function provides the results synchronously. If there are no dependencies, this function will return #PACKAGE_MANAGER_ERROR_NONE immediately and the callback will not be invoked. * @param[in] package_info The package information * @param[in] callback The iteration callback function * @param[in] user_data The user data to be passed to the callback function @@ -547,7 +547,7 @@ int package_info_foreach_dependency_info(package_info_h package_info, package_in * A --> B means that A depends on B. * When package_info_foreach_dependency_info(C) is called, the callback results in two parameters: @a from is B and @a to is C, @a from is D and @a to is C, @a from is A and @a to is B. * @since_tizen 5.5 - * @remarks The function provides the results synchronously. If there are no dependencies, this function will return PACKAGE_MANAGER_ERROR_NONE immediately and the callback will not be invoked. + * @remarks The function provides the results synchronously. If there are no dependencies, this function will return #PACKAGE_MANAGER_ERROR_NONE immediately and the callback will not be invoked. * @param[in] package_info The package information * @param[in] callback The iteration callback function * @param[in] user_data The user data to be passed to the callback function -- 2.7.4