From 200e3a01274867b3e8eafb50f3385fff85353088 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Fri, 25 Oct 2013 00:40:18 +0900 Subject: [PATCH] efl_thread examples: fixed comment typos. --- legacy/elementary/src/examples/efl_thread_3.c | 2 +- legacy/elementary/src/examples/efl_thread_4.c | 2 +- legacy/elementary/src/examples/efl_thread_win32_3.c | 2 +- legacy/elementary/src/examples/efl_thread_win32_4.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/legacy/elementary/src/examples/efl_thread_3.c b/legacy/elementary/src/examples/efl_thread_3.c index 452a69058d..199dccf16b 100644 --- a/legacy/elementary/src/examples/efl_thread_3.c +++ b/legacy/elementary/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/legacy/elementary/src/examples/efl_thread_4.c b/legacy/elementary/src/examples/efl_thread_4.c index 84136d763b..aa2e97ccfc 100644 --- a/legacy/elementary/src/examples/efl_thread_4.c +++ b/legacy/elementary/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/legacy/elementary/src/examples/efl_thread_win32_3.c b/legacy/elementary/src/examples/efl_thread_win32_3.c index c8133cbc74..58b60f502a 100644 --- a/legacy/elementary/src/examples/efl_thread_win32_3.c +++ b/legacy/elementary/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/legacy/elementary/src/examples/efl_thread_win32_4.c b/legacy/elementary/src/examples/efl_thread_win32_4.c index 70299c939e..97bc030b93 100644 --- a/legacy/elementary/src/examples/efl_thread_win32_4.c +++ b/legacy/elementary/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));