From dd3f75d0b53f166cf757d5d219f3ba35d3192f2f Mon Sep 17 00:00:00 2001 From: Cornelius Osei Owusu Boateng <78667952+CorneliusOsei2@users.noreply.github.com> Date: Wed, 3 Apr 2024 17:05:40 -0400 Subject: [PATCH] Update README.md (#73) Delete duplicate words. --- labs/lab4-shardedstore/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/lab4-shardedstore/README.md b/labs/lab4-shardedstore/README.md index c12d9b5c..be302c8a 100644 --- a/labs/lab4-shardedstore/README.md +++ b/labs/lab4-shardedstore/README.md @@ -133,7 +133,7 @@ Now you'll build a sharded fault-tolerant key/value storage system. Each `ShardStoreServer` will operate as part of a replica group. Each replica group will serve operations for some of the key-space shards. Use `keyToShard()` -in `ShardStoreNode` to find which shard a key belongs to; you should use use +in `ShardStoreNode` to find which shard a key belongs to; you should use `SingleKeyCommand.key()` (all of the operations you'll handle in part 2 are single-key operations) in `ShardStoreClient` to determine the key for a given operation.