Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Fixed API docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ma2ciek committed Feb 10, 2020
1 parent 71b091e commit aac9ae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/contextwatchdog.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export default class ContextWatchdog extends Watchdog {
}

/**
* Adds items to the watchdog. Once created, instances of these items will be available using the {@link #get} method.
* Adds items to the watchdog. Once created, instances of these items will be available using the {@link #getItem} method.
*
* Items can be passed together as an array of objects:
*
Expand Down
2 changes: 1 addition & 1 deletion src/watchdog.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export default class Watchdog {
*
* @protected
* @param {String} eventName Event name.
* @param {...any} args Event arguments.
* @param {...*} args Event arguments.
*/
_fire( eventName, ...args ) {
const callbacks = this._listeners[ eventName ] || [];
Expand Down

0 comments on commit aac9ae7

Please sign in to comment.