Fix spelling errata
[platform/core/uifw/voice-control.git] / client / vc.c
index dd813d5..594c2ef 100644 (file)
@@ -1083,7 +1083,7 @@ static int __vc_get_invocation_name(char** invocation_name)
 
                ret = vc_get_current_language(&lang);
                if (0 != ret || NULL == lang) {
-                       SLOG(LOG_ERROR, TAG_VCC, "[ERROR] Fail to get current laguage, ret(%d)", ret); //LCOV_EXCL_LINE
+                       SLOG(LOG_ERROR, TAG_VCC, "[ERROR] Fail to get current language, ret(%d)", ret); //LCOV_EXCL_LINE
                        free(appid);
                        appid = NULL;
                        if (NULL != lang) {
@@ -2499,7 +2499,7 @@ int vc_auth_disable(void)
                return VC_ERROR_INVALID_STATE;
        }
 
-       /* check autority */
+       /* check authority */
        vc_auth_state_e auth_state = VC_AUTH_STATE_NONE;
        if (0 != vc_client_get_auth_state(g_vc, &auth_state)) {
                SLOG(LOG_ERROR, TAG_VCC, "[ERROR] handle is not available");
@@ -2523,7 +2523,7 @@ int vc_auth_disable(void)
        }
 
        if (0 != vc_dbus_request_auth_disable(g_vc->handle, mgr_pid)) {
-               SLOG(LOG_ERROR, TAG_VCC, "[ERROR] Fail to authority disble");
+               SLOG(LOG_ERROR, TAG_VCC, "[ERROR] Fail to authority disable");
                return VC_ERROR_OPERATION_FAILED;
        }
 
@@ -2554,7 +2554,7 @@ int vc_auth_get_state(vc_auth_state_e* state)
                return VC_ERROR_INVALID_STATE;
        }
 
-       /* get autority */
+       /* get authority */
        vc_auth_state_e temp = VC_AUTH_STATE_NONE;
        if (0 != vc_client_get_auth_state(g_vc, &temp)) {
                SLOG(LOG_ERROR, TAG_VCC, "[ERROR] handle is not available");