From f4310a86ebfe0a4c276d9db9ad51c727a5d57eb9 Mon Sep 17 00:00:00 2001 From: Ananya Jain Date: Tue, 5 Mar 2024 09:23:25 -0500 Subject: [PATCH] Update Clerk comment to reflect new Put/Append RPCs --- src/kvraft/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kvraft/client.go b/src/kvraft/client.go index 4762894..60d329f 100644 --- a/src/kvraft/client.go +++ b/src/kvraft/client.go @@ -43,7 +43,7 @@ func (ck *Clerk) Get(key string) string { // shared by Put and Append. // // you can send an RPC with code like this: -// ok := ck.servers[i].Call("KVServer.PutAppend", &args, &reply) +// ok := ck.servers[i].Call("KVServer."+op, &args, &reply) // // the types of args and reply (including whether they are pointers) // must match the declared types of the RPC handler function's