This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch tutorial-fix
in repository www-content.

View the commit online.

commit f174409c642483c2f5b3d2ba8c0c497cecf585fc
Author: tangcl <tan...@88.com>
AuthorDate: Fri Jan 12 09:30:37 2024 +0800

    Fix some errors hello-world.md.txt
---
 pages/develop/tutorials/c/hello-world.md.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/develop/tutorials/c/hello-world.md.txt b/pages/develop/tutorials/c/hello-world.md.txt
index 90a122fa3..d09ca97e5 100644
--- a/pages/develop/tutorials/c/hello-world.md.txt
+++ b/pages/develop/tutorials/c/hello-world.md.txt
@@ -149,7 +149,7 @@ The ``Efl_Event`` structure contains an array with all the command line paramete
 
 Finally, the array can be found in ``args->argv``. Arrays in EFL are handled with the ``Eina_Array`` type, so you can use ``eina_array_count()`` to retrieve the number of elements in an array and ``eina_array_data_get()`` to access the contents of the array.
 
-In the above example, if no parameters are passed to your program (``eina_array_count(args->argv) == 0``), it just prints "Hello World!". Otherwise, the first parameter is retrieved and printed. Try compiling again your program and running it with your name as the first parameter:
+In the above example, if no parameters are passed to your program (``eina_array_count(args->argv) == 1``), it just prints "Hello World!". Otherwise, the first parameter is retrieved and printed. Try compiling again your program and running it with your name as the first parameter:
 
 ```bash
 ./hello-world Mike

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to