doc: fix typo in fs.symlink
authorMichaël Zasso <mic.besace@gmail.com>
Fri, 4 Mar 2016 08:53:31 +0000 (09:53 +0100)
committerMyles Borins <mborins@us.ibm.com>
Mon, 21 Mar 2016 20:07:02 +0000 (13:07 -0700)
PR-URL: https://github.com/nodejs/node/pull/5560
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
doc/api/fs.markdown

index efa116b..9d9d067 100644 (file)
@@ -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])