From 3d4a0211b6b91b27cc95dc63a1ad044719caab91 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 27 Jan 2011 14:20:50 -0800 Subject: [PATCH] Fix arg order of fs.linkSync in docs Thanks Pierre. Closes GH-571. --- doc/api/fs.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 802cb0c779..1caf5b3a79 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).