From ac33a795496ba2dc7333dc2e78f5b2bba4b9a421 Mon Sep 17 00:00:00 2001 From: Ruben Daniels Date: Mon, 19 Oct 2015 19:05:10 -0700 Subject: [PATCH] documentation update --- plugins/c9.fs/fs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.fs/fs.js b/plugins/c9.fs/fs.js index c71fc4b3..04e2d42d 100644 --- a/plugins/c9.fs/fs.js +++ b/plugins/c9.fs/fs.js @@ -347,7 +347,7 @@ define(function(require, exports, module) { * @param {String} path the path of the directory to get the listing from * @param {Function} callback called after the file listing is read * @param {Error} callback.err the error information returned by the operation - * @param {String[]} callback.files a list of strings containing the filenames of the files in the directory + * @param {Stat[]} callback.files a list of stat objects (See fs.stat) containing the file information of the files in the directory * @fires error */ readdir: api.readdir,