docs: ws
[awesomized/libmemcached] / docs / source / libmemcached / memcached_touch.rst
index 1b92e6ef2c7bb1a5f913124c67beef6b5ee7f46e..0e00264eb9317e28ed4579d4bc1706ff458b6a4e 100644 (file)
@@ -8,9 +8,8 @@ memcached_touch, memcached_touch_by_key
 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)
@@ -21,24 +20,19 @@ 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
 ------
 
-
 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
 --------