Skip to content

Commit 08f3e18

Browse files
authored
Merge pull request #1295 from kazuyainoue0124/fix_typos_in_readme
2 parents 9938411 + d1f24d6 commit 08f3e18

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can also specify connection options as a [`redis://` URL][redis-url]:
3434
redis = Redis.new(url: "redis://:[email protected]:6380/15")
3535
```
3636

37-
The client expects passwords with special chracters to be URL-encoded (i.e.
37+
The client expects passwords with special characters to be URL-encoded (i.e.
3838
`CGI.escape(password)`).
3939

4040
To connect to Redis listening on a Unix socket, try:
@@ -77,7 +77,7 @@ The client does not provide connection pooling. Each `Redis` instance
7777
has one and only one connection to the server, and use of this connection
7878
is protected by a mutex.
7979

80-
As such it is heavilly recommended to use the [`connection_pool` gem](https://github.com/mperham/connection_pool), e.g.:
80+
As such it is heavily recommended to use the [`connection_pool` gem](https://github.com/mperham/connection_pool), e.g.:
8181

8282
```ruby
8383
module MyApp
@@ -139,7 +139,7 @@ SENTINELS = [{ host: '127.0.0.1', port: 26380 },
139139
redis = Redis.new(name: 'mymaster', sentinels: SENTINELS, role: :master, password: 'mysecret')
140140
```
141141

142-
So you have to provide Sentinel credential and Redis explictly even they are the same
142+
So you have to provide Sentinel credential and Redis explicitly even they are the same
143143

144144
```ruby
145145
# Use 'mysecret' to authenticate against the mymaster instance and sentinel
@@ -406,7 +406,7 @@ gem "hiredis-client"
406406
```
407407

408408
If your application doesn't call `Bundler.require`, you may have
409-
to require it explictly:
409+
to require it explicitly:
410410

411411
```ruby
412412
require "hiredis-client"

0 commit comments

Comments
 (0)