From ead2a279aa455366a03c25ddae1165bf2424e7d0 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Fri, 3 Sep 2021 15:52:20 -0500 Subject: [PATCH] typo --- initial-kv/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/initial-kv/README.md b/initial-kv/README.md index 1ed6146..2500337 100644 --- a/initial-kv/README.md +++ b/initial-kv/README.md @@ -59,10 +59,10 @@ prompt> ./kv g,10 prompt> ``` -Here you can see that when we `get` the key `10`, the program prints out -the key value, followed by a space, followed by a comma, followed by -the value (in this case, `remzi`). We accomplish this output simply by -calling `printf` and printing the results to **standard output**. +Here you can see that when we `get` the key `10`, the program prints +out the key value, followed by a comma, followed by the value (in this +case, `remzi`). We accomplish this output simply by calling `printf` +and printing the results to **standard output**. The full list of commands which your KV store should support are: - *put*: The format is `p,key,value`, where `key` is an integer, and