seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=0e226c447202c3f6286bb2a43bcb07e415984fb0

commit 0e226c447202c3f6286bb2a43bcb07e415984fb0
Author: Daniel Juyung Seo <seojuyu...@gmail.com>
Date:   Fri Oct 25 00:40:18 2013 +0900

    efl_thread examples: fixed comment typos.
---
 src/examples/efl_thread_3.c       | 2 +-
 src/examples/efl_thread_4.c       | 2 +-
 src/examples/efl_thread_win32_3.c | 2 +-
 src/examples/efl_thread_win32_4.c | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/examples/efl_thread_3.c b/src/examples/efl_thread_3.c
index 452a690..199dccf 100644
--- a/src/examples/efl_thread_3.c
+++ b/src/examples/efl_thread_3.c
@@ -22,7 +22,7 @@ my_thread_run(void *arg)
 {
    double t = 0.0;
 
-   // inside the pthread function lets loop forever incrimenting a time point
+   // inside the pthread function lets loop forever incrementing a time point
    for (;;)
      {
         struct info *inf = malloc(sizeof(struct info));
diff --git a/src/examples/efl_thread_4.c b/src/examples/efl_thread_4.c
index 84136d7..aa2e97c 100644
--- a/src/examples/efl_thread_4.c
+++ b/src/examples/efl_thread_4.c
@@ -24,7 +24,7 @@ my_thread_run(void *arg)
 {
    double t = 0.0;
 
-   // inside the pthread function lets loop forever incrimenting a time point
+   // inside the pthread function lets loop forever incrementing a time point
    for (;;)
      {
         struct info *inf = malloc(sizeof(struct info));
diff --git a/src/examples/efl_thread_win32_3.c 
b/src/examples/efl_thread_win32_3.c
index c8133cb..58b60f5 100644
--- a/src/examples/efl_thread_win32_3.c
+++ b/src/examples/efl_thread_win32_3.c
@@ -23,7 +23,7 @@ my_thread_run(LPVOID arg)
 {
    double t = 0.0;
 
-   // inside the thread function lets loop forever incrimenting a time point
+   // inside the thread function lets loop forever incrementing a time point
    for (;;)
      {
         struct info *inf = malloc(sizeof(struct info));
diff --git a/src/examples/efl_thread_win32_4.c 
b/src/examples/efl_thread_win32_4.c
index 70299c9..97bc030 100644
--- a/src/examples/efl_thread_win32_4.c
+++ b/src/examples/efl_thread_win32_4.c
@@ -25,7 +25,7 @@ my_thread_run(LPVOID arg)
 {
    double t = 0.0;
 
-   // inside the thread function lets loop forever incrimenting a time point
+   // inside the thread function lets loop forever incrementing a time point
    for (;;)
      {
         struct info *inf = malloc(sizeof(struct info));

-- 


Reply via email to