docs: sanitize
[m6w6/libmemcached] / docs / source / libmemcached / memcached_auto.rst
index e4f27c51abc4b3c2a29fd1110db7e9f5ebaedd91..1171393d04f0260c8d6c8d2522550e18f407ec19 100644 (file)
@@ -1,15 +1,13 @@
-====================================
 Incrementing and Decrementing Values
 ====================================
 
 .. index:: object: memcached_st
 
---------
 SYNOPSIS
 --------
 
 #include <libmemcached/memcached.h>
+
 .. function:: memcached_return_t memcached_increment (memcached_st *ptr, const char *key, size_t key_length, uint32_t offset, uint64_t *value)
 
 .. function:: memcached_return_t memcached_decrement (memcached_st *ptr, const char *key, size_t key_length, uint32_t offset, uint64_t *value)
@@ -28,12 +26,9 @@ SYNOPSIS
 
 Compile and link with -lmemcached
 
-
------------
 DESCRIPTION
 -----------
 
-
 :manpage:`memcached(1)` servers have the ability to increment and decrement keys
 (overflow and underflow are not detected). This gives you the ability to use
 memcached to generate shared sequences of values.
@@ -70,18 +65,13 @@ when using the binary protocol.
 :func:`memcached_increment_with_initial_by_key`, and
 :func:`memcached_decrement_with_initial_by_key` are master key equivalents of the above.
 
-
-------
 RETURN
 ------
 
-
 A value of type :type:`memcached_return_t`  is returned.
 On success that value will be `MEMCACHED_SUCCESS`.
 Use memcached_strerror to translate this value to a printable string.
 
-
---------
 SEE ALSO
 --------