From a9ce5b50bebd7a283b4c3bd06f757703b0585edd Mon Sep 17 00:00:00 2001 From: Bruno Pedro Date: Mon, 20 Dec 2010 00:01:46 +0000 Subject: [PATCH] Added documentation for recursive mkdirSync(). --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a21717e..dadb3e9 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,5 @@ node-fs is an extension to the original [nodejs](http://nodejs.org) [fs library] Right now, the following new operations are supported: -* mkdir(path, mode, recursive, [callback]): creates a directory recursively. \ No newline at end of file +* mkdir(path, mode, [recursive], [callback]): if the 'recursive' parameter is true, creates a directory recursively; +* mkdirSync(path, mode, [recursive]): if the 'recursive' parameter is true, synchronously creates a directory recursively. \ No newline at end of file