Fix some bugs 44/150344/4
authorHyunjee Kim <hj0426.kim@samsung.com>
Fri, 15 Sep 2017 07:38:09 +0000 (16:38 +0900)
committerhyunjee Kim <hj0426.kim@samsung.com>
Tue, 5 Dec 2017 01:15:57 +0000 (01:15 +0000)
- chage variable's name from dest to target

Change-Id: I057d071214125c2f5ddb2461528025ba574e2e1c
Signed-off-by: Hyunjee Kim <hj0426.kim@samsung.com>
src/include/utils_i18n_ucollator.h

index 3128c9e..67b4ad9 100644 (file)
@@ -233,7 +233,7 @@ int i18n_ucollator_destroy(i18n_ucollator_h collator);
  * @param[in]    collator    The #i18n_ucollator_h containing the comparison rules
  * @param[in]    src         The source string
  * @param[in]    src_len     The length of the source, otherwise @c -1 if null-terminated
- * @param[in]    dest        The target string
+ * @param[in]    target      The target string
  * @param[in]    target_len  The length of the target, otherwise @c -1 if null-terminated
  * @param[out]   result      The result of comparing the strings \n
  *                           One of #I18N_UCOLLATOR_EQUAL, #I18N_UCOLLATOR_GREATER, or #I18N_UCOLLATOR_LESS
@@ -245,7 +245,7 @@ int i18n_ucollator_destroy(i18n_ucollator_h collator);
 int i18n_ucollator_str_collator(const i18n_ucollator_h collator,
                                                                const i18n_uchar *src,
                                                                int32_t src_len,
-                                                               const i18n_uchar *dest,
+                                                               const i18n_uchar *target,
                                                                int32_t target_len,
                                                                i18n_ucollator_result_e *result);