summaryrefslogtreecommitdiff
path: root/src/lib/eio
diff options
context:
space:
mode:
authorJihoon Kim <jihoon48.kim@samsung.com>2014-01-07 11:27:15 +0900
committerJihoon Kim <jihoon48.kim@samsung.com>2014-01-07 11:27:15 +0900
commit946a797e0d9675ff7cd73f208f56189e79abb7ea (patch)
treea8a173457dc4a2b131896cfa1840d773a9383611 /src/lib/eio
parent8fcedfc017133a9703fbb1b82053891e0d456312 (diff)
downloadefl-946a797e0d9675ff7cd73f208f56189e79abb7ea.tar.gz
fix warning related to argument in generating doxygen
Diffstat (limited to 'src/lib/eio')
-rw-r--r--src/lib/eio/eio_inline_helper.x14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/eio/eio_inline_helper.x b/src/lib/eio/eio_inline_helper.x
index af49646b72..7672498634 100644
--- a/src/lib/eio/eio_inline_helper.x
+++ b/src/lib/eio/eio_inline_helper.x
@@ -29,11 +29,11 @@
*/
/**
- * @brief Return last acces time to a file
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @brief Return last access time to a file
+ * @param st The stat buffer as given by eio_file_stat callback.
* @return last access time.
*
- * This function return the st_atime field, last acces time, as double like all EFL time call.
+ * This function return the st_atime field, last access time, as double like all EFL time call.
*/
static inline double
eio_file_atime(const Eina_Stat *st)
@@ -44,7 +44,7 @@ eio_file_atime(const Eina_Stat *st)
/**
* @brief Return last modification time of a file
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @param st The stat buffer as given by eio_file_stat callback.
* @return last modification time.
*
* This function return the st_mtime field, last modification time, as double like all EFL time call.
@@ -58,7 +58,7 @@ eio_file_mtime(const Eina_Stat *st)
/**
* @brief Return file length.
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @param st The stat buffer as given by eio_file_stat callback.
* @return the length of a file.
*
* This function is just an accessor to st_size and return the file length.
@@ -72,7 +72,7 @@ eio_file_size(const Eina_Stat *st)
/**
* @brief Return if path is a directory.
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @param st The stat buffer as given by eio_file_stat callback.
* @return EINA_TRUE if the path is a directory.
*
* This function tell you if the stated path is a directory or not.
@@ -86,7 +86,7 @@ eio_file_is_dir(const Eina_Stat *st)
/**
* @brief Return if path is a length.
- * @param stat The stat buffer as given by eio_file_stat callback.
+ * @param st The stat buffer as given by eio_file_stat callback.
* @return EINA_TRUE if the path is a length.
*
* This function tell you if the stated path is a length or not.