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>
pull/835/head
Dan Dascalescu 2015-02-11 23:25:01 -08:00 committed by cjihrig
parent 6a2b204bbc
commit 30dca66958
1 changed files with 1 additions and 1 deletions

View File

@ -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