summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Dascalescu <ddascalescu+github@gmail.com>2015-02-11 23:25:01 -0800
committerTrevor Norris <trev.norris@gmail.com>2015-02-12 14:25:33 -0700
commit6c60a72d2b6e3d2af281621ff109ccf8687b35f6 (patch)
treeeff2b3927316e773af168134cd5519cf95bb8121
parent4823afcbe26dd3a23aaa35d552a9656f37c8645d (diff)
downloadnode-6c60a72d2b6e3d2af281621ff109ccf8687b35f6.tar.gz
doc: fix code syntax
Add a ';' to the end of a function call in documentation. PR-URL: https://github.com/joyent/node/pull/9198 Reviewed-by: Trevor Norris <trev.norris@gmail.com>
-rw-r--r--doc/api/fs.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown
index 5d3ef3bd1..03c6d6efa 100644
--- a/doc/api/fs.markdown
+++ b/doc/api/fs.markdown
@@ -29,7 +29,7 @@ Here is the synchronous version:
var fs = require('fs');
- fs.unlinkSync('/tmp/hello')
+ fs.unlinkSync('/tmp/hello');
console.log('successfully deleted /tmp/hello');
With the asynchronous methods there is no guaranteed ordering. So the