Merge pull request #1420 from sean-/master

Fix markdown's markup: 2^(64-1) != 2^(64)-1
This commit is contained in:
Ryan Breen 2015-11-17 18:34:30 -05:00
commit dd4f72f571
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ value corresponding to the key. There are a number of query parameters that can
be used with a PUT request: be used with a PUT request:
* ?flags=\<num\> : This can be used to specify an unsigned value between * ?flags=\<num\> : 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=\<index\> : This flag is used to turn the `PUT` into a Check-And-Set * ?cas=\<index\> : 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 operation. This is very useful as a building block for more complex