Skip to content

Fix typos in documentation #146

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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