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

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

commit a201c6aa8a6acf10f3de600e5e27d73782953042
Author: jpeg <j...@videolan.org>
Date:   Thu Apr 16 20:19:47 2015 -0700

    Wiki page start changed with summary [fix some typos while reading the 
getting started example page] by jpeg
---
 pages/docs/efl/start.txt | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/pages/docs/efl/start.txt b/pages/docs/efl/start.txt
index fdacb2e..809c148 100644
--- a/pages/docs/efl/start.txt
+++ b/pages/docs/efl/start.txt
@@ -19,9 +19,9 @@ and cleanly. We will cover these topics here:
   * Widgets/controls (buttons, sliders, scrollers etc.)
   * Input method framework
   * Data archive storage & retrieval
-  * Data strcuture (de)serialization
+  * Data structure (de)serialization
   * Video & audio codec playback, control and display
-  * IPC and network connectivty (TCP, UDP, unix domain & abstract sockets, 
HTTP)
+  * IPC and network connectivity (TCP, UDP, unix domain & abstract sockets, 
HTTP)
   * File utilities
   * Freedesktop.org standards (desktop files, menus, mime types, icons)
   * Async I/O
@@ -37,7 +37,7 @@ Ecore_File and Efreet.
 
 We will make an assumption that you have a reasonable grasp of the C
 programming language here. Perhaps you might want to read
-[[http://www.cprogramming.com/tutorial/c-tutorial.html|this C introduction 
totorial]]
+[[http://www.cprogramming.com/tutorial/c-tutorial.html|this C introduction 
tutorial]]
 if you are new to C, or need a refresher.
 
 ----
@@ -46,7 +46,7 @@ if you are new to C, or need a refresher.
 
 It is assumed every application has a __Mainloop__, and that EFL is
 in charge of that. If you are writing a library, then that assumption
-would be made ulimately of the application using that library as well.
+would be made ultimately of the application using that library as well.
 For the purposes of this introduction to EFL, we will talk about an
 application, how it starts, runs and shuts down.
 
@@ -122,7 +122,7 @@ ELM_MAIN()
 When the application runs, the ''ELM_MAIN()'' macro sets up a normal
 ''main()'' function, inits EFL for you and then calls elm_main() with
 the usual application argc & argv parameters you get in C. When
-''elm_main()'' returns, it willpass the return value to the return
+''elm_main()'' returns, it will pass the return value to the return
 value of main() for the application exit code. Before it does this,
 EFL will be cleanly shut down for you. You are encouraged to use this
 setup above to ensure this happens.
@@ -149,7 +149,7 @@ file selector window, a settings dialog etc. so name 
appropriately
 here. The window will display a title of "Hello, World!" in the
 titlebar (if such a thing exists on your platform). This title may be
 used in other places on a platform such as a window switcher, a
-taskbar or some otherinterface control element. The window will have a
+taskbar or some other interface control element. The window will have a
 background already placed as the resize object of a window.
 
 <code c>
@@ -209,7 +209,7 @@ anything the like. This will be passed as the first data 
pointer to
 the callback above. In this case we will passin our window pointer as
 we want to delete the window when someone presses the button. Due to
 our policy settings, this will end up deleting the last window we have
-and automatically exiting the mainloop, and then of course the
+and automatically exiting the __Mainloop__, and then of course the
 application. The example works this way to show how it might be
 extended to open multiple windows and only have the window you click
 the button in be deleted, until all windows are gone and application

-- 


Reply via email to