Skip to content

Commit 6b7cd7d

Browse files
committed
Fixed missing semicolon
1 parent daec9a6 commit 6b7cd7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $ html-pdf test/businesscard.html businesscard.pdf
2424
```javascript
2525
var fs = require('fs');
2626
var pdf = require('html-pdf');
27-
var html = fs.readFileSync('./test/businesscard.html', 'utf8')
27+
var html = fs.readFileSync('./test/businesscard.html', 'utf8');
2828
var options = { format: 'Letter' };
2929

3030
pdf.create(html, options).toFile('./businesscard.pdf', function(err, res) {

0 commit comments

Comments
 (0)