From 4aab13ac06583c128ab3e6d4bd4f2b491963a70c Mon Sep 17 00:00:00 2001 From: James Shubin Date: Mon, 30 May 2016 22:07:31 -0400 Subject: [PATCH] docs: fix ordering of sentence so it's logical and more clear --- Documentation/op-guide/v2-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/op-guide/v2-migration.md b/Documentation/op-guide/v2-migration.md index ee9fe0d14..7f1a07b42 100644 --- a/Documentation/op-guide/v2-migration.md +++ b/Documentation/op-guide/v2-migration.md @@ -14,7 +14,7 @@ There are some notable differences between API v2 and API v3: - Flat key space: There are no directories in API v3, only keys. For example, "/a/b/c/" is a key. Range queries support getting all keys matching a given prefix. -- Compacted responses: Operations like `Delete` no longer return previous values. To get the deleted value, a transaction can be used to atomically delete the key and get its value. +- Compacted responses: Operations like `Delete` no longer return previous values. To get the deleted value, a transaction can be used to atomically get the key and then delete its value. - Leases: A replacement for v2 TTLs; the TTL is bound to a lease and keys attach to the lease. When the TTL expires, the lease is revoked and all attached keys are removed.