Skip to content

Commit

Permalink
Fix missing "</html>" in HTML document
Browse files Browse the repository at this point in the history
closes #12
  • Loading branch information
Kim McKinley authored and dougwilson committed Mar 22, 2017
1 parent 75785bb commit f4d7760
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
unreleased
==========

* Fix missing `</html>` in HTML document
* deps: [email protected]
- Fix: `DEBUG_MAX_ARRAY_LENGTH`

Expand Down
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ function createHtmlDocument (message) {
'</head>\n' +
'<body>\n' +
'<pre>' + body + '</pre>\n' +
'</body>\n'
'</body>\n' +
'</html>\n'
}

/**
Expand Down

0 comments on commit f4d7760

Please sign in to comment.