summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2023-08-19 07:06:47 +0300
committerGitHub <noreply@github.com>2023-08-18 21:06:47 -0700
commit039385bd8b9192a3994d75e75e377933f17d1f47 (patch)
tree5d61cde2fddb0477bde09e52b75b02c85a6dcfad /README.md
parente07ae7d3b6248be8be842eca3e1e97595a17aa1a (diff)
Integrating spellcheck into CI (#1218)
* Adding spellcheck testing * words * updating version of spellcheck action
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index c0fc2a1..f704641 100644
--- a/README.md
+++ b/README.md
@@ -28,11 +28,11 @@ The library comes with multiple APIs. There is the
* After v1.2.0 we modified how we invoke `poll(2)` to wait for connections to complete, such that we will now retry
the call if it is interrupted by a signal until:
- a) The connection succeeds or fails.
+ a) The connection succeeds or fails.
b) The overall connection timeout is reached.
- In previous versions, an interrupted `poll(2)` call would cause the connection to fail
- with `c->err` set to `REDIS_ERR_IO` and `c->errstr` set to `poll(2): Interrupted system call`.
+ In previous versions, an interrupted `poll(2)` call would cause the connection to fail
+ with `c->err` set to `REDIS_ERR_IO` and `c->errstr` set to `poll(2): Interrupted system call`.
## Upgrading to `1.1.0`
@@ -302,7 +302,7 @@ void redisFree(redisContext *c);
This function immediately closes the socket and then frees the allocations done in
creating the context.
-### Sending commands (cont'd)
+### Sending commands (continued)
Together with `redisCommand`, the function `redisCommandArgv` can be used to issue commands.
It has the following prototype: