From: Ryan Dahl Date: Thu, 27 Jan 2011 22:20:50 +0000 (-0800) Subject: Fix arg order of fs.linkSync in docs X-Git-Tag: v0.3.7~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d4a0211b6b91b27cc95dc63a1ad044719caab91;p=platform%2Fupstream%2Fnodejs.git Fix arg order of fs.linkSync in docs Thanks Pierre. Closes GH-571. --- diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 802cb0c..1caf5b3 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -129,7 +129,7 @@ Synchronous fstat(2). Returns an instance of `fs.Stats`. Asynchronous link(2). No arguments other than a possible exception are given to the completion callback. -### fs.linkSync(dstpath, srcpath) +### fs.linkSync(srcpath, dstpath) Synchronous link(2).