From 9c26b572d0ff21e371e72c43594529f49d4d7910 Mon Sep 17 00:00:00 2001 From: kabeer khan Date: Fri, 21 Nov 2014 09:16:56 -0500 Subject: [PATCH] ecore_file : Changed documentation of ecore_file_mksubdirs Summary: Corrected documentation of ecore_file_mksubdirs by replacing dirs with subdirs Signed-off-by: kabeer khan Reviewers: devilhorns Reviewed By: devilhorns Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1674 --- src/lib/ecore_file/ecore_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore_file/ecore_file.c b/src/lib/ecore_file/ecore_file.c index 9a3c6d021e..372af03512 100644 --- a/src/lib/ecore_file/ecore_file.c +++ b/src/lib/ecore_file/ecore_file.c @@ -251,12 +251,12 @@ ecore_file_mkdirs(const char **dirs) * @return number of successful directories created, -1 on failure. * * This function creates all the directories that are in the null - * terminated array @p dirs in the @p base directory. If @p base does + * terminated array @p subdirs in the @p base directory. If @p base does * not exist, it will be created. The function loops over the directories * and call ecore_file_mkdir(). The whole path of the directories must * exist. So if base/a/b/c wants to be created, @p subdirs must * contain "a", "a/b" and "a/b/c", in that order. This function - * returns -1 if @p dirs or @p base are @c NULL, or if @p base is + * returns -1 if @p subdirs or @p base are @c NULL, or if @p base is * empty ("\0"). It returns 0 is @p base is not a directory or * invalid, or if it can't be created. Otherwise if returns the number * of suceesfully created directories.