Skip to content

Commit

Permalink
Fix typos in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonFrings committed Nov 2, 2023
1 parent fccbda7 commit e385380
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ affected by any BC breaks, see below for more details.
`ConnectorInterface` and then update to this version without causing a
BC break.

* BC break: Remove uneeded `data` event and support for advanced `MONITOR`
* BC break: Remove unneeded `data` event and support for advanced `MONITOR`
command for performance and consistency reasons and
remove underdocumented `isBusy()` method.
(#62, #63 and #64 by @clue)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ create a new underlying connection if this idle time is expired.
From a consumer side this means that you can start sending commands to the
database right away while the underlying connection may still be
outstanding. Because creating this underlying connection may take some
time, it will enqueue all oustanding commands and will ensure that all
time, it will enqueue all outstanding commands and will ensure that all
commands will be executed in correct order once the connection is ready.

If the underlying database connection fails, it will reject all
Expand Down
2 changes: 1 addition & 1 deletion src/RedisClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private function client(): PromiseInterface
$redis->on('close', function () {
$this->promise = null;

// foward unsubscribe/punsubscribe events when underlying connection closes
// forward unsubscribe/punsubscribe events when underlying connection closes
$n = count($this->subscribed);
foreach ($this->subscribed as $channel => $_) {
$this->emit('unsubscribe', [$channel, --$n]);
Expand Down

0 comments on commit e385380

Please sign in to comment.