eio: grammar and typo fixes in docs.

Summary:
Fix a sentence.

Changes:

     src/examples/eio/eio_file_ls.c

Reviewers: cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2894
This commit is contained in:
Yomi 2015-08-03 11:50:10 +02:00 committed by Stefan Schmidt
parent 5fcd0e8c27
commit 1e0622fe6e
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ _done_cb(void *data, Eio_File *handler EINA_UNUSED)
static void
_error_cb(void *data EINA_UNUSED, Eio_File *handler EINA_UNUSED, int error)
{
fprintf(stderr, "Something wrong has happend:%s\n", strerror(error));
fprintf(stderr, "Something has gone wrong:%s\n", strerror(error));
ecore_main_loop_quit();
}