From 20b1d870c99f293fe542198bacebe045c4959511 Mon Sep 17 00:00:00 2001 From: Jongkyu Koo Date: Thu, 11 Feb 2016 11:51:39 +0900 Subject: [PATCH] [ACR-479]fix spelling error Change-Id: I1b8bd2ee260337f14c6d84a992a14da7926534bd Signed-off-by: Jongkyu Koo --- org.tizen.tutorials/html/native/social/contact_tutorial_n.htm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org.tizen.tutorials/html/native/social/contact_tutorial_n.htm b/org.tizen.tutorials/html/native/social/contact_tutorial_n.htm index b4500e7..eae45ac 100644 --- a/org.tizen.tutorials/html/native/social/contact_tutorial_n.htm +++ b/org.tizen.tutorials/html/native/social/contact_tutorial_n.htm @@ -1796,7 +1796,7 @@ if (error_code != CONTACTS_ERROR_NONE)
  1. Set the log type with contacts_record_set_int() function. This function takes the log record handle as the first parameter, _contacts_phone_log.log_type as the second, and the type, which is a integer value, as the third parameter. The function returns the status code. If the function returns an error, free memory, remove handles, and disconnect from the service, if needed.
    -error_code = contacts_record_set_int(log, _contacts_phone_log.log_type, CONTACTS_PLOG_TYPE_VOICE_INCOMMING);
    +error_code = contacts_record_set_int(log, _contacts_phone_log.log_type, CONTACTS_PLOG_TYPE_VOICE_INCOMING);
     if (error_code != CONTACTS_ERROR_NONE)
        dlog_print(DLOG_ERROR, LOG_TAG, "contacts record set integer failed: %x", error_code);
     
    @@ -2005,9 +2005,9 @@ if (error_code != CONTACTS_ERROR_NONE)
  2. Add a condition, such as the log type. -

    The following example retrieves only those logs which type is CONTACTS_PLOG_TYPE_VOICE_INCOMMING.

    +

    The following example retrieves only those logs which type is CONTACTS_PLOG_TYPE_VOICE_INCOMING.

    -error_code = contacts_filter_add_int(filter, _contacts_phone_log.log_type, CONTACTS_MATCH_EQUAL, CONTACTS_PLOG_TYPE_VOICE_INCOMMING);
    +error_code = contacts_filter_add_int(filter, _contacts_phone_log.log_type, CONTACTS_MATCH_EQUAL, CONTACTS_PLOG_TYPE_VOICE_INCOMING);
     if (error_code != CONTACTS_ERROR_NONE)
        dlog_print(DLOG_ERROR, LOG_TAG, "contacts filter add integer failed: %x", error_code);
     
    -- 2.7.4