From 1faea43c403f08468475b29792b6b7d9b87c3679 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 efa116b98a7c23..9d9d0672b6f488 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -736,7 +736,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])