Skip to content

Commit

Permalink
Fix JSDoc and adjust internal name of Changes specification
Browse files Browse the repository at this point in the history
  • Loading branch information
bryaningl3 committed Jan 27, 2022
1 parent d43c5f6 commit fca020d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .releases/4.18.0.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
**New Features**

* Added a `Changes` specification.
* Added a `Changes` specification.
* Added an `Exists` specification.
7 changes: 3 additions & 4 deletions specifications/Changes.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ module.exports = (() => {
*
* @public
* @extends {Specification}
* @param {*} value
*/
class ChangesSpecification extends Specification {
class Changes extends Specification {
constructor() {
super();

Expand All @@ -38,9 +37,9 @@ module.exports = (() => {
}

toString() {
return '[ChangesSpecification]';
return '[Changes]';
}
}

return ChangesSpecification;
return Changes;
})();

0 comments on commit fca020d

Please sign in to comment.