Fix documentation 39/213239/1
authorIlho Kim <ilho159.kim@samsung.com>
Tue, 3 Sep 2019 06:58:51 +0000 (15:58 +0900)
committerIlho Kim <ilho159.kim@samsung.com>
Tue, 3 Sep 2019 06:58:51 +0000 (15:58 +0900)
typo, better expression

Change-Id: I6dd63400b29c475cc200c16ee879d13208259033
Signed-off-by: Ilho Kim <ilho159.kim@samsung.com>
include/package_info.h

index 0573b03..140fe1b 100644 (file)
@@ -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