diff options
author | Myoungwoon Roy, Kim <myoungwoon.kim@samsung.com> | 2018-08-30 14:01:21 +0900 |
---|---|---|
committer | Hermet Park <hermetpark@gmail.com> | 2018-08-30 14:01:21 +0900 |
commit | e06a9b6acf2d74880a3d4697248fd4e24971eef0 (patch) | |
tree | 918fbdc09dba5e30d6237488bd7ee5cad14a0180 /src/lib/ecore_file/Ecore_File.h | |
parent | 5b9d152e147612d50dc4059ad6d91fe2f233701c (diff) |
docs: Fix typos and some wrong expressions in API reference doc.
Summary: I had fixed some typos and some wrong expressions in API reference doc
Test Plan: N/A
Reviewers: raster, zmike, Hermet, segfaultxavi
Reviewed By: Hermet
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D6943
Diffstat (limited to 'src/lib/ecore_file/Ecore_File.h')
-rw-r--r-- | src/lib/ecore_file/Ecore_File.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ecore_file/Ecore_File.h b/src/lib/ecore_file/Ecore_File.h index 50c85eaa7e..23a0521945 100644 --- a/src/lib/ecore_file/Ecore_File.h +++ b/src/lib/ecore_file/Ecore_File.h | |||
@@ -195,7 +195,7 @@ EAPI Eina_Bool ecore_file_is_dir (const char *file); | |||
195 | * | 195 | * |
196 | * This function creates the directory @p dir, with the mode S_IRUSR | | 196 | * This function creates the directory @p dir, with the mode S_IRUSR | |
197 | * S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH on UNIX | 197 | * S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH on UNIX |
198 | * (mode is unsued on Windows). On success, it returns @c EINA_TRUE, | 198 | * (mode is unused on Windows). On success, it returns @c EINA_TRUE, |
199 | * @c EINA_FALSE otherwise. | 199 | * @c EINA_FALSE otherwise. |
200 | */ | 200 | */ |
201 | EAPI Eina_Bool ecore_file_mkdir (const char *dir); | 201 | EAPI Eina_Bool ecore_file_mkdir (const char *dir); |
@@ -379,7 +379,7 @@ EAPI const char *ecore_file_file_get (const char *path); | |||
379 | * @param file The name of the file. | 379 | * @param file The name of the file. |
380 | * @return The directory name. | 380 | * @return The directory name. |
381 | * | 381 | * |
382 | * This function returns the directory where @p file resides as anewly | 382 | * This function returns the directory where @p file resides as newly |
383 | * allocated string. If @p file is @c NULL or on error, this function | 383 | * allocated string. If @p file is @c NULL or on error, this function |
384 | * returns @c NULL. When not needed anymore, the returned value must | 384 | * returns @c NULL. When not needed anymore, the returned value must |
385 | * be freed. | 385 | * be freed. |
@@ -537,7 +537,7 @@ EAPI Ecore_File_Monitor *ecore_file_monitor_add(const char *path, | |||
537 | * monitored by ecore_file_monitor_add(). @p em must be the value | 537 | * monitored by ecore_file_monitor_add(). @p em must be the value |
538 | * returned by ecore_file_monitor_add(). If @p em is @c NULL, or none | 538 | * returned by ecore_file_monitor_add(). If @p em is @c NULL, or none |
539 | * of the notify methods (Inotify, Windows notification or polling) is | 539 | * of the notify methods (Inotify, Windows notification or polling) is |
540 | * availablethis function does nothing. | 540 | * available this function does nothing. |
541 | */ | 541 | */ |
542 | EAPI void ecore_file_monitor_del(Ecore_File_Monitor *em); | 542 | EAPI void ecore_file_monitor_del(Ecore_File_Monitor *em); |
543 | 543 | ||
@@ -665,7 +665,7 @@ EAPI void ecore_file_download_abort_all(void); | |||
665 | 665 | ||
666 | /** | 666 | /** |
667 | * @brief Aborts the given download job and call the completion_cb | 667 | * @brief Aborts the given download job and call the completion_cb |
668 | * callbck with a status of 1 (error). | 668 | * callback with a status of 1 (error). |
669 | * | 669 | * |
670 | * @param job The download job to abort. | 670 | * @param job The download job to abort. |
671 | * | 671 | * |