Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Jul 30, 2019
1 parent 2c42150 commit 71cb0a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/count.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export interface ICountOptions<T> extends IEventOptions<T> {

/**
* @class
* Extends [[SubEvent]] with event [[onCount]] to observe the number of subscriptions.
* Extends [[SubEvent]] with event [[onCount]] to observe the number of live subscriptions.
*/
export class SubEventCount<T = any> extends SubEvent<T> {

Expand Down
4 changes: 2 additions & 2 deletions src/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class SubEvent<T = any> {
* Data to be sent, according to the type template.
*
* @param onError
* Callback for handling errors from the event subscribers.
* Callback for catching all unhandled errors from the event subscribers.
*
* @param onFinished
* Optional callback function to be notified when the last recipient has received the data.
Expand Down Expand Up @@ -190,7 +190,7 @@ export class SubEvent<T = any> {
* Data to be sent, according to the type template.
*
* @param onError
* Callback for handling errors from subscribers.
* Callback for catching all unhandled errors from the event subscribers.
*
* @returns
* Number of clients that have received the data.
Expand Down

0 comments on commit 71cb0a0

Please sign in to comment.