WWW-www.enlightenment.org pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=1f7e71f8530ce610e8675015a5325a38e1d6fb1e

commit 1f7e71f8530ce610e8675015a5325a38e1d6fb1e
Author: Xavi Artigas <xavierarti...@yahoo.es>
Date:   Mon Dec 4 07:18:41 2017 -0800

    Wiki page main-loop.md changed with summary [Fix eo-intro links] by Xavi 
Artigas
---
 pages/develop/guides/c/core/main-loop.md.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pages/develop/guides/c/core/main-loop.md.txt 
b/pages/develop/guides/c/core/main-loop.md.txt
index 1ef3ebda4..093b7fe96 100644
--- a/pages/develop/guides/c/core/main-loop.md.txt
+++ b/pages/develop/guides/c/core/main-loop.md.txt
@@ -11,7 +11,7 @@ EFL manages timers, file descriptors, user interface events 
amongst other things
 
 ## Prerequisites ##
 
-* Read the [Introduction to Eo](eo-intro.md) to understand how Eo objects are 
created and destroyed.
+* Read the [Introduction to Eo](/develop/tutorials/c/eo-intro.md) to 
understand how Eo objects are created and destroyed.
 
 * Read the [Events Programming Guide](events.md) to learn how to register 
callbacks, which can be triggered by events.
 
@@ -23,7 +23,7 @@ You can find usage examples in the EFL repository: 
[``reference/c/core/src/core_
 
 ### Creating and Destroying Timers ###
 
-Timers are Eo objects. You can create and destroy them with ``efl_add()`` as 
for all other Eo objects (see [Introduction to Eo](eo-intro.md)). Their class 
is `EFL_LOOP_TIMER_CLASS`:
+Timers are Eo objects. You can create and destroy them with ``efl_add()`` as 
for all other Eo objects (see [Introduction to 
Eo](/develop/tutorials/c/eo-intro.md)). Their class is `EFL_LOOP_TIMER_CLASS`:
 
 ```c
 timer_object = efl_add(EFL_LOOP_TIMER_CLASS, ...);
@@ -104,7 +104,7 @@ You can find usage examples in the EFL examples repository: 
[``reference/c/core/
 
 ### Creating and Destroying FD Monitors ###
 
-FD monitors are Eo objects that wrap system file descriptors, and are 
instantiated and destroyed with ``efl_add()`` as for all other Eo objects (see 
[Introduction to Eo](eo-intro.md)). Their class is `EFL_LOOP_FD_CLASS,`:
+FD monitors are Eo objects that wrap system file descriptors, and are 
instantiated and destroyed with ``efl_add()`` as for all other Eo objects (see 
[Introduction to Eo](/develop/tutorials/c/eo-intro.md)). Their class is 
`EFL_LOOP_FD_CLASS,`:
 
 ```c
 fd_object = efl_add(EFL_LOOP_FD_CLASS, ...);

-- 


Reply via email to