Skip to content

Commit 76bd8ae

Browse files
authored
Merge pull request #146 from SimonFrings/typos
Fix typos in documentation
2 parents fccbda7 + e385380 commit 76bd8ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ affected by any BC breaks, see below for more details.
139139
`ConnectorInterface` and then update to this version without causing a
140140
BC break.
141141

142-
* BC break: Remove uneeded `data` event and support for advanced `MONITOR`
142+
* BC break: Remove unneeded `data` event and support for advanced `MONITOR`
143143
command for performance and consistency reasons and
144144
remove underdocumented `isBusy()` method.
145145
(#62, #63 and #64 by @clue)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ create a new underlying connection if this idle time is expired.
291291
From a consumer side this means that you can start sending commands to the
292292
database right away while the underlying connection may still be
293293
outstanding. Because creating this underlying connection may take some
294-
time, it will enqueue all oustanding commands and will ensure that all
294+
time, it will enqueue all outstanding commands and will ensure that all
295295
commands will be executed in correct order once the connection is ready.
296296

297297
If the underlying database connection fails, it will reject all

src/RedisClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ private function client(): PromiseInterface
9090
$redis->on('close', function () {
9191
$this->promise = null;
9292

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

0 commit comments

Comments
 (0)