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 a07c526460
commit c1f9152f10
2 changed files with 7 additions and 7 deletions

View File

@ -181,17 +181,17 @@
* *
* To use eio_file_ls(), you just need to define four callbacks: * To use eio_file_ls(), you just need to define four callbacks:
* *
* @li The filter callback, which allow or not a file to be seen * @li The filter callback, which allows a file to be seen (or not)
* by the main loop handler. This callback run in a separated thread. * by the main loop handler. This callback runs in a separate thread.
* @li The main callback, which receive in the main loop all the file * @li The main callback, which receive in the main loop all the file
* that are allowed by the filter. If you are updating a user interface * that are allowed by the filter. If you are updating a user interface
* it make sense to delay the insertion a little, so you get a chance * it makes sense to delay the insertion a little, so you get a chance
* to update the canvas for a bunch of file instead of one by one. * to update the canvas for a bunch of files instead of one by one.
* @li The end callback, which is called in the main loop when the * @li The end callback, which is called in the main loop when the
* content of the directory has been correctly scanned and all the * content of the directory has been correctly scanned and all the
* file notified to the main loop. * file notified to the main loop.
* @li The error callback, which is called if an error occurred or * @li The error callback, which is called if an error occurred or
* if the listing was cancelled during it's run. You can then retrieve * if the listing was cancelled during its run. You can then retrieve
* the error type as an errno error. * the error type as an errno error.
* *
* Here is a simple example: * Here is a simple example:
@ -288,7 +288,7 @@
* if( type == EIO_MONITOR_FILE_MODIFIED ) * if( type == EIO_MONITOR_FILE_MODIFIED )
* printf("is being modified"); * printf("is being modified");
* else if( type == EIO_MONITOR_FILE_CLOSED ) * else if( type == EIO_MONITOR_FILE_CLOSED )
* printf("is not more being modified"); * printf("is no longer being modified");
* else printf("got unexpected changes"); * else printf("got unexpected changes");
* printf("\n"); * printf("\n");
* } * }

View File

@ -43,7 +43,7 @@ _done_cb(void *data, Eio_File *handler EINA_UNUSED)
static void static void
_error_cb(void *data EINA_UNUSED, Eio_File *handler EINA_UNUSED, int error) _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(); ecore_main_loop_quit();
} }