Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Aug 27, 2019
1 parent dfef198 commit c967cee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/errors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ const {SequenceError} = require('./sequence');
* {@link external:TypeError TypeError} when receiving invalid input parameters.
*
* @property {function} BatchError
* {@link errors.BatchError BatchError} interface.
* {@link errors.BatchError BatchError} class.
*
* Represents regular errors that can be reported by method {@link batch}.
*
* @property {function} PageError
* {@link errors.PageError PageError} interface.
* {@link errors.PageError PageError} class.
*
* Represents regular errors that can be reported by method {@link page}.
*
* @property {function} SequenceError
* {@link errors.SequenceError SequenceError} interface.
* {@link errors.SequenceError SequenceError} class.
*
* Represents regular errors that can be reported by method {@link sequence}.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/errors/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const errorReasons = {
};

/**
* @interface errors.PageError
* @class errors.PageError
* @augments external:Error
* @description
* This type represents all errors rejected by method {@link page}, except for {@link external:TypeError TypeError}
Expand Down
2 changes: 1 addition & 1 deletion lib/errors/sequence.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const errorReasons = {
};

/**
* @interface errors.SequenceError
* @class errors.SequenceError
* @augments external:Error
* @description
* This type represents all errors rejected by method {@link sequence}, except for {@link external:TypeError TypeError}
Expand Down

0 comments on commit c967cee

Please sign in to comment.