From: Jongkyu Koo Date: Thu, 11 Feb 2016 02:51:39 +0000 (+0900) Subject: [ACR-479]fix spelling error X-Git-Tag: tizen_3.0/TD_SYNC/20161201~168^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20b1d870c99f293fe542198bacebe045c4959511;p=sdk%2Fonline-doc.git [ACR-479]fix spelling error Change-Id: I1b8bd2ee260337f14c6d84a992a14da7926534bd Signed-off-by: Jongkyu Koo --- 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);