Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 6c60a72

Browse files
dandvtrevnorris
authored andcommitted
doc: fix code syntax
Add a ';' to the end of a function call in documentation. PR-URL: #9198 Reviewed-by: Trevor Norris <trev.norris@gmail.com>
1 parent 4823afc commit 6c60a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/fs.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Here is the synchronous version:
2929

3030
var fs = require('fs');
3131

32-
fs.unlinkSync('/tmp/hello')
32+
fs.unlinkSync('/tmp/hello');
3333
console.log('successfully deleted /tmp/hello');
3434

3535
With the asynchronous methods there is no guaranteed ordering. So the

0 commit comments

Comments
 (0)