Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
denissimon committed May 12, 2024
1 parent 4e48ca2 commit 4c858ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,14 +160,14 @@ someEvent.unsubscribeAll()
someObservable.unbindAll()
```

#### The number of subscribers / observers
#### Number of subscribers / observers

```swift
someEvent.subscribersCount
someObservable.observersCount
```

#### The number of triggers
#### Number of triggers

```swift
someEvent.triggersCount
Expand All @@ -176,7 +176,7 @@ someObservable.triggersCount

#### queue: DispatchQueue

By default, the provided handler is executed on the thread that triggers the Event/Observable. To change this default behaviour:
By default, a provided handler is executed on the thread that triggers the Event/Observable. To change this default behaviour:

```swift
// This executes the handler on the main thread
Expand All @@ -196,7 +196,7 @@ someEvent.subscribe(self) { [weak self] data in
}
```

#### N-time notifications
#### N-time notification

To ensure that the handler will be executed no more than `n` times:

Expand Down

0 comments on commit 4c858ef

Please sign in to comment.