From eb5a95e04a16260676b1c243e5826980b4103b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Fri, 4 Mar 2016 09:53:31 +0100 Subject: [PATCH] doc: fix typo in fs.symlink PR-URL: https://github.com/nodejs/node/pull/5560 Reviewed-By: Ben Noordhuis Reviewed-By: Colin Ihrig --- 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 3e06eabded01dd..35fc7cfd370161 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -742,7 +742,7 @@ Here is an example below: fs.symlink('./foo', './new-port'); ``` -It would create a symlic link named with "new-port" that points to "foo". +It creates a symbolic link named "new-port" that points to "foo". ## fs.symlinkSync(target, path[, type])