]> git.saurik.com Git - redis.git/blobdiff - design-documents/REDIS-CLUSTER-2
Spelling fixes.
[redis.git] / design-documents / REDIS-CLUSTER-2
index 62fa114b2432b71af52eae5e59bfb826747c4511..c37a58f57722e7feed357f4b236543e95466599d 100644 (file)
@@ -96,7 +96,7 @@ Clients of the cluster are required to have the cluster configuration loaded
 into memory. The cluster configuration is the sum of the following info:
 
 - Number of data nodes in the cluster, for instance, 10
-- A map between hash slots and nodes, so for instnace:
+- A map between hash slots and nodes, so for instance:
   hash slot 1 -> node 0
   hash slot 2 -> node 5
   hash slot 3 -> node 3
@@ -140,7 +140,7 @@ to time is going to have no impact in the overall performance.
 -------------
 
 To perform a read query the client hashes the key argument from the command
-(in the intiial version of Redis Cluster only single-key commands are
+(in the initial version of Redis Cluster only single-key commands are
 allowed). Using the in memory configuration it maps the hash key to the
 node ID.