docs: bin/
[m6w6/libmemcached] / docs / source / libmemcached / memcached_touch.rst
index 1b92e6ef2c7bb1a5f913124c67beef6b5ee7f46e..b1b982e4c2623928d46b804b5cb73cd9f4469ffe 100644 (file)
@@ -4,42 +4,32 @@ memcached_touch, memcached_touch_by_key
 
 .. index:: object: memcached_st
 
---------
 SYNOPSIS
 --------
 
-
 #include <libmemcached/memcached.h>
+
 .. function:: memcached_return_t memcached_touch (memcached_st *ptr, const char *key, size_t key_length, time_t expiration)
 
 .. function:: memcached_return_t memcached_touch_by_key (memcached_st *ptr, const char *group_key, size_t group_key_length, const char *key, size_t key_length, time_t expiration)
 
 Compile and link with -lmemcached
 
------------
 DESCRIPTION
 -----------
 
-
 :func:`memcached_touch` is used to update the expiration time on an existing key.
 :func:`memcached_touch_by_key` works the same, but it takes a master key 
 to find the given value.
 
-
-------
-RETURN
-------
-
+RETURN VALUE
+------------
 
 A value of type :type:`memcached_return_t` is returned
 On success that value will be `MEMCACHED_SUCCESS`.
 Use :func:`memcached_strerror` to translate this value to a printable 
 string.
 
-
-
---------
 SEE ALSO
 --------