File tree Expand file tree Collapse file tree 4 files changed +146
-4
lines changed Expand file tree Collapse file tree 4 files changed +146
-4
lines changed Original file line number Diff line number Diff line change
1
+ matrix :
2
+ - name : Markdown
3
+ expect_match : false
4
+ apsell :
5
+ lang : en
6
+ d : en_US
7
+ ignore-case : true
8
+ dictionary :
9
+ wordlists :
10
+ - .github/wordlist.txt
11
+ output : wordlist.dic
12
+ pipeline :
13
+ - pyspelling.filters.markdown :
14
+ markdown_extensions :
15
+ - markdown.extensions.extra :
16
+ - pyspelling.filters.html :
17
+ comments : false
18
+ attributes :
19
+ - alt
20
+ ignores :
21
+ - ' :matches(code, pre)'
22
+ - code
23
+ - pre
24
+ - blockquote
25
+ - img
26
+ sources :
27
+ - ' README.md'
28
+ - ' FAQ.md'
29
+ - ' docs/**'
Original file line number Diff line number Diff line change
1
+ ABI
2
+ ACLs
3
+ alloc
4
+ Allocator
5
+ allocators
6
+ antirez
7
+ api
8
+ APIs
9
+ ASYNC
10
+ asyncRedisContext
11
+ asyncronous
12
+ AUTOFREE
13
+ autoload
14
+ autoloader
15
+ autoloading
16
+ Autoloading
17
+ backend
18
+ backends
19
+ behaviour
20
+ boolean
21
+ CAS
22
+ Changelog
23
+ customizable
24
+ Customizable
25
+ CVE
26
+ dataset
27
+ de
28
+ deallocation
29
+ ElastiCache
30
+ extensibility
31
+ FPM
32
+ getaddrinfo
33
+ gmail
34
+ grunder
35
+ Grunder
36
+ hiredis
37
+ Hiredis
38
+ HIREDIS
39
+ hostname
40
+ IANA
41
+ IPv
42
+ IPV
43
+ keepalive
44
+ keyspace
45
+ keyspaces
46
+ KiB
47
+ libc
48
+ libev
49
+ libevent
50
+ localhost
51
+ Lua
52
+ michael
53
+ minimalistic
54
+ namespace
55
+ NOAUTOFREE
56
+ NOAUTOFREEREPLIES
57
+ NONBLOCK
58
+ Noordhuis
59
+ OpenSSL
60
+ Packagist
61
+ pcnoordhuis
62
+ PhpRedis
63
+ Pieter
64
+ pipelined
65
+ pipelining
66
+ pluggable
67
+ Predis
68
+ PRERELEASE
69
+ printf
70
+ PSR
71
+ PSUBSCRIBE
72
+ rb
73
+ Readme
74
+ README
75
+ rebalanced
76
+ rebalancing
77
+ redis
78
+ Redis
79
+ redisAsyncContext
80
+ redisContext
81
+ redisOptions
82
+ redisReader
83
+ reusability
84
+ REUSEADDR
85
+ runtime
86
+ Sanfilippo
87
+ SHA
88
+ sharding
89
+ SONAME
90
+ SSL
91
+ struct
92
+ stunnel
93
+ subelements
94
+ TCP
95
+ TLS
96
+ unparsed
97
+ UNSPEC
98
+ URI
99
+ variadic
Original file line number Diff line number Diff line change
1
+ name : spellcheck
2
+ on :
3
+ pull_request :
4
+ jobs :
5
+ check-spelling :
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - name : Checkout
9
+ uses : actions/checkout@v3
10
+ - name : Check Spelling
11
+ uses : rojopolis/spellcheck-github-actions@0.33.1
12
+ with :
13
+ config_path : .github/spellcheck-settings.yml
14
+ task_name : Markdown
Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ The library comes with multiple APIs. There is the
28
28
* After v1.2.0 we modified how we invoke ` poll(2) ` to wait for connections to complete, such that we will now retry
29
29
the call if it is interrupted by a signal until:
30
30
31
- a) The connection succeeds or fails.
31
+ a) The connection succeeds or fails.
32
32
b) The overall connection timeout is reached.
33
33
34
- In previous versions, an interrupted ` poll(2) ` call would cause the connection to fail
35
- with ` c->err ` set to ` REDIS_ERR_IO ` and ` c->errstr ` set to ` poll(2): Interrupted system call ` .
34
+ In previous versions, an interrupted ` poll(2) ` call would cause the connection to fail
35
+ with ` c->err ` set to ` REDIS_ERR_IO ` and ` c->errstr ` set to ` poll(2): Interrupted system call ` .
36
36
37
37
## Upgrading to ` 1.1.0 `
38
38
@@ -302,7 +302,7 @@ void redisFree(redisContext *c);
302
302
This function immediately closes the socket and then frees the allocations done in
303
303
creating the context.
304
304
305
- ### Sending commands (cont'd )
305
+ ### Sending commands (continued )
306
306
307
307
Together with `redisCommand`, the function `redisCommandArgv` can be used to issue commands.
308
308
It has the following prototype:
You can’t perform that action at this time.
0 commit comments