Fix typo in comments 44/65744/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 12 Apr 2016 09:02:06 +0000 (18:02 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 12 Apr 2016 09:02:06 +0000 (18:02 +0900)
Change-Id: If8120e793b95a45eaa0d03f74bd738b8f858bada

ism/extras/efl_panel/isf_panel_efl.cpp
ism/src/isf_pkg.cpp

index 94cb06e..15e3648 100644 (file)
@@ -1164,7 +1164,7 @@ static void _initialize_ime_info (void)
  *
  * @param pkgid pkgid to insert/update ime_info table.
  *
- * @return 1 on successfull insert, 2 on successful update, -1 if pkgid is not IME package, otherwise return 0.
+ * @return 1 on successful insert, 2 on successful update, -1 if pkgid is not IME package, otherwise return 0.
  */
 static int _isf_insert_ime_info_by_pkgid(const char *pkgid)
 {
@@ -1229,7 +1229,7 @@ static Eina_Bool _start_default_helper_timer(void *data)
     std::vector<ImeInfoDB>::iterator it;
     VectorPairStringUint32::iterator iter;
 
-    /* Let panel know that ise is deleted... */
+    /* Let panel know that ISE is deleted... */
     for (it = _ime_info.begin(); it != _ime_info.end(); it++) {
         total_appids.push_back(it->appid);
     }
@@ -7050,7 +7050,7 @@ int main (int argc, char *argv [])
 
     elm_policy_set (ELM_POLICY_THROTTLE, ELM_POLICY_THROTTLE_NEVER);
 
-    //FIXME: frontend name shoule be got from paramter,set socket as dead code
+    //FIXME: frontend name should be got from parameter,set socket as dead code
     launch_socket_frontend ();
 
     if (config_name != "dummy") {
index cd3c9fd..e0b7a44 100644 (file)
@@ -221,7 +221,7 @@ int isf_pkg_ime_app_list_cb (const pkgmgrinfo_appinfo_h handle, void *user_data)
 
             struct stat st;
             if (stat (bin_path.c_str (), &st) < 0) {
-                /* In case of no executatble in bin directory of package's root path */
+                /* In case of no executable in bin directory of package's root path */
                 /* Create symbolic link for launching and supporting application FW APIs */
                 if (symlink (SCIM_HELPER_LAUNCHER_PROGRAM, bin_path.c_str ()) != 0)
                     LOGW ("Failed to create symbolic link : %s\n", bin_path.c_str ());