Skip to content

Commit

Permalink
doc: fix code syntax
Browse files Browse the repository at this point in the history
Add a ';' to the end of a function call in documentation.

PR-URL: nodejs/node-v0.x-archive#9198
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
  • Loading branch information
dandv authored and cjihrig committed Feb 13, 2015
1 parent 6a2b204 commit 30dca66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/fs.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 30dca66

Please sign in to comment.