Skip to content

Commit

Permalink
Another attempt to fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Aug 21, 2024
1 parent 2905ac1 commit 0a65e24
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .github/wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ Failover
GZIP
Graal
GraalVM
Graals
Graal's
HdrHistogram
IP’s
IPs
Iterable
JDK
JFR
Expand Down Expand Up @@ -193,6 +193,7 @@ extensibility
failover
fromExecutor
gradle
Graal's
hasNext
hostnames
idempotency
Expand All @@ -212,11 +213,11 @@ microservices
misconfiguration
multithreaded
natively
nettys
netty's
newSingle
nodeId
nodeIds
nodeIds
nodeId's
nullability
onCompleted
onError
Expand Down
6 changes: 3 additions & 3 deletions docs/advanced-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ configure a different DNS resolver. Lettuce comes with
or custom DNS servers without caching of results so each hostname lookup
yields in a DNS lookup.</p>
<p>Since 4.4: Defaults to <code>DnsResolvers.UNRESOLVED</code> to use
nettys <code>AddressResolver</code> that resolves DNS names on
netty's <code>AddressResolver</code> that resolves DNS names on
<code>Bootstrap.connect()</code> (requires netty 4.1)</p></td>
</tr>
<tr>
Expand Down Expand Up @@ -674,7 +674,7 @@ output.</p>
obstruction:</p>
<p><code>MOVED</code>/<code>ASK</code> redirection but the cluster
topology view is stale Connecting to cluster nodes using different
IP’s/hostnames (e.g. private/public IP’s)</p>
IPs/hostnames (e.g. private/public IPs)</p>
<p>Connecting to non-cluster members to reconfigure those while using
the RedisClusterClient connection.</p></td>
</tr>
Expand Down Expand Up @@ -2137,7 +2137,7 @@ less total CPU usage.
### Building Native Images

Native images assume a closed world principle in which all code needs to
be known at the time the native image is built. Graals SubstrateVM
be known at the time the native image is built. Graal's SubstrateVM
analyzes class files during native image build-time to determine what
bytecode needs to be translated into a native image. While this task can
be achieved to a good extent by analyzing static bytecode, it’s harder
Expand Down
2 changes: 1 addition & 1 deletion docs/integration-extension.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ underlying bytes. The `byte[]` interface of Lettuce 3.x required the
user to provide an array with the exact data for interchange. So if you
have an array where you want to use only a subset, you’re required to
create a new instance of a byte array and copy the data. The same
applies if you have a different byte source (e.g. nettys `ByteBuf` or
applies if you have a different byte source (e.g. netty's `ByteBuf` or
an NIO `ByteBuffer`). The `ByteBuffer`s for decoding are pointers to the
underlying data. `ByteBuffer`s for encoding data can be either pure
pointers or allocated memory. Lettuce does not free any memory (such as
Expand Down
2 changes: 1 addition & 1 deletion docs/new-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
- Configuration of extended Keep-Alive options through
`KeepAliveOptions` (only available for some transports/Java versions).

- Configuration of nettys `AddressResolverGroup` through
- Configuration of netty's `AddressResolverGroup` through
`ClientResources`. Uses `DnsAddressResolverGroup` when
`netty-resolver-dns` is on the classpath.

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/pubsub.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Lettuce provides support for Publish/Subscribe on Redis Standalone and
Redis Cluster connections. The connection is notified on
message/subscribed/unsubscribed events after subscribing to channels or
patterns. [Synchronous](connecting-redis.md#basic-usage), [asynchronous](async-api.md)
and [reactive](reactive-api.md) API’s are provided to interact with Redis
and [reactive](reactive-api.md) APIs are provided to interact with Redis
Publish/Subscribe features.

### Subscribing
Expand Down

0 comments on commit 0a65e24

Please sign in to comment.