From 30dca66958daa8ae1ca25834118a16a68c08f65b Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Wed, 11 Feb 2015 23:25:01 -0800 Subject: [PATCH] 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 --- 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 71685f8ff3acb5..fe78082cfe57c3 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