Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
docs: rename CHANGE.md to CHANGELOG.md
Browse files Browse the repository at this point in the history
add header
  • Loading branch information
wraithgar committed Feb 9, 2022
1 parent e90f786 commit 2667644
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md → CHANGELOG.md
@@ -1,4 +1,4 @@
Hi, figured we could actually use a changelog now:
# Changelog

## 1.1.5 2018-05-24

Expand Down
6 changes: 5 additions & 1 deletion test/lib/test-event.js
Expand Up @@ -24,6 +24,10 @@ module.exports = function (obj, event, next) {
function gotTooManyResults () {
var secondResult = Array.prototype.slice.call(arguments)
clearTimeout(timeout)
next(new Error('Got too many results, first ' + util.inspect(result) + ' and then ' + util.inspect(secondResult)))
next(new Error(
'Got too many results, first ' +
util.inspect(result) + ' and then ' +
util.inspect(secondResult))
)
}
}

0 comments on commit 2667644

Please sign in to comment.