Wiki page hello-world.md changed with summary [Typo] by Xavi Artigas

This commit is contained in:
Xavi Artigas 2019-09-19 01:07:54 -07:00 committed by www-data
parent 5d9a4b888f
commit 660fd4e778
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED)
EFL takes care of all initialization tasks and calls your ``efl_main()`` method when everything is ready.
At this point the parameters to ``efl_main()`` are not being used, hence the ``EINA_UNUSED`` macro. This is optional but it gets rid of warnings regarding unused parameters so it's worth having. Moreover, the ``data`` argument will always be NULL in this tutorials.
At this point the parameters to ``efl_main()`` are not being used, hence the ``EINA_UNUSED`` macro. This is optional but it gets rid of warnings regarding unused parameters so it's worth having. Moreover, the ``data`` argument will always be NULL in these tutorials.
## Step Three: Print "Hello World" ##