From dde0d26e18aae677d68bae9b6bec8f18f886d559 Mon Sep 17 00:00:00 2001 From: Sean Chittenden Date: Tue, 17 Nov 2015 15:21:47 -0800 Subject: [PATCH] Fix markdown's markup: 2^(64-1) != 2^(64)-1 --- website/source/docs/agent/http/kv.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/agent/http/kv.html.markdown b/website/source/docs/agent/http/kv.html.markdown index 30abd31c0..d3cde07e3 100644 --- a/website/source/docs/agent/http/kv.html.markdown +++ b/website/source/docs/agent/http/kv.html.markdown @@ -103,7 +103,7 @@ value corresponding to the key. There are a number of query parameters that can be used with a PUT request: * ?flags=\ : This can be used to specify an unsigned value between - 0 and 2^64-1. Clients can choose to use this however makes sense for their application. + 0 and (2^64)-1. Clients can choose to use this however makes sense for their application. * ?cas=\ : This flag is used to turn the `PUT` into a Check-And-Set operation. This is very useful as a building block for more complex