summaryrefslogtreecommitdiff
path: root/src/lib/eio
diff options
context:
space:
mode:
authorAmitesh Singh <singh.amitesh@gmail.com>2015-09-28 21:57:35 +0530
committerAmitesh Singh <singh.amitesh@gmail.com>2015-09-28 21:57:35 +0530
commit17a891e00d2c30fa1421409a3d6334a5c1e5905c (patch)
treeabc00721ef64de5722db7f964467e62caf256a22 /src/lib/eio
parent4884e4164fcf24b93c21b9380fe7e9c0aa8275f6 (diff)
downloadefl-17a891e00d2c30fa1421409a3d6334a5c1e5905c.tar.gz
eio: fix typo in documentation
Diffstat (limited to 'src/lib/eio')
-rw-r--r--src/lib/eio/Eio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/eio/Eio.h b/src/lib/eio/Eio.h
index 3a9a2814d8..7b4410f86b 100644
--- a/src/lib/eio/Eio.h
+++ b/src/lib/eio/Eio.h
@@ -944,7 +944,7 @@ static inline Eina_Bool eio_file_is_lnk(const Eina_Stat *stat);
* @param open_cb Callback called in the main loop when the file has been successfully opened.
* @param error_cb Callback called in the main loop when the file couldn't be opened.
* @param data Unmodified user data passed to callbacks
- * @return Pointer to the file if successfull or NULL otherwise.
+ * @return Pointer to the file if successful or NULL otherwise.
*
*/
EAPI Eio_File *eio_file_open(const char *name, Eina_Bool shared,
@@ -958,7 +958,7 @@ EAPI Eio_File *eio_file_open(const char *name, Eina_Bool shared,
* @param done_cb Callback called in the main loop when the file has been successfully closed.
* @param error_cb Callback called in the main loop when the file couldn't be closed.
* @param data Unmodified user data passed to callbacks
- * @return Pointer to the file if successfull or NULL otherwise.
+ * @return Pointer to the file if successful or NULL otherwise.
*/
EAPI Eio_File *eio_file_close(Eina_File *f,
Eio_Done_Cb done_cb,
@@ -973,7 +973,7 @@ EAPI Eio_File *eio_file_close(Eina_File *f,
* @param map_cb Callback called in the main loop when the file has been successfully mapped.
* @param error_cb Callback called in the main loop when the file can't be mapped.
* @param data Unmodified user data passed to callbacks
- * @return Pointer to the file if successfull or NULL otherwise.
+ * @return Pointer to the file if successful or NULL otherwise.
*
* The container of the Eio_File is the Eina_File.
*/
@@ -994,7 +994,7 @@ EAPI Eio_File *eio_file_map_all(Eina_File *f,
* @param map_cb Callback called in the main loop when the file has been successfully mapped.
* @param error_cb Callback called in the main loop when the file can't be mapped.
* @param data Unmodified user data passed to callbacks
- * @return Pointer to the file if successfull or NULL otherwise.
+ * @return Pointer to the file if successful or NULL otherwise.
*
* The container of the Eio_File is the Eina_File.
*/