elementary/exmaples - fixed typo
authorChunEon Park <hermet@hermet.pe.kr>
Wed, 5 Oct 2011 11:13:06 +0000 (11:13 +0000)
committerChunEon Park <hermet@hermet.pe.kr>
Wed, 5 Oct 2011 11:13:06 +0000 (11:13 +0000)
SVN revision: 63838

src/examples/efl_thread_4.c
src/examples/efl_thread_5.c

index b3fd4fd..2eee3b7 100644 (file)
@@ -40,7 +40,7 @@ my_thread_run(void *arg)
         // and sleep and loop
         usleep(1000);
         t += 0.02;
-        // in case someone has asked us to cancel - then cacnel this loop
+        // in case someone has asked us to cancel - then cancel this loop
         // co-operatively (cancelling is co-operative)
         pthread_mutex_lock(&th_lock);
         do_exit = th_exit;
index 0edeeee..7b3db3a 100644 (file)
@@ -33,7 +33,7 @@ th_do(void *data, Ecore_Thread *th)
         // and sleep and loop
         usleep(1000);
         t += 0.02;
-        // in case someone has asked us to cancel - then cacnel this loop
+        // in case someone has asked us to cancel - then cancel this loop
         // co-operatively (cancelling is co-operative)
         if (ecore_thread_check(th)) break;
      }