diff --git a/pages/develop/tutorial/c/hello-world.md.txt b/pages/develop/tutorial/c/hello-world.md.txt index 9808864ac..63e2754d1 100644 --- a/pages/develop/tutorial/c/hello-world.md.txt +++ b/pages/develop/tutorial/c/hello-world.md.txt @@ -111,6 +111,6 @@ At the end of this tutorial you have learned: * Header files must be included for any EFL libraries you intend to use. Typically, these are ``Eina.h`` and ``Efl.h``. * Your main method should be ``efl_main()``. * Your EFL programs should always call ``efl_exit()`` at some stage. -* Your EFL programs should include the ``EFL_MAIN()`` macro at the end, so EFL can insert its own start-up and shutdown code. +* Your EFL programs should include the ``EFL_MAIN()`` macro at the end, so EFL can insert its own setup and shutdown code. The next tutorial keeps introducing more basic concepts, and shows how to retrieve the command line parameters passed to your program.