Merge Thomason's cork patch.
[awesomized/libmemcached] / docs / memcached_flush_buffers.pod
index 4ed1aec28acd136fbc0c0344d7c22217ff5a6ff7..11c06dc0d706186d0a1b1ed17a990e98c230aec9 100644 (file)
@@ -1,6 +1,6 @@
 =head1 NAME
 
-memcached_flush_buffers
+memcached_flush_buffers - Flush buffers and send buffered commands
 
 =head1 LIBRARY
 
@@ -10,29 +10,29 @@ C Client Library for memcached (libmemcached, -lmemcached)
 
   #include <memcached.h>
 
-  memcached_return
+  memcached_return_t
     memcached_flush_buffers (memcached_st *ptr);
 
 =head1 DESCRIPTION
 
 memcached_flush_buffers() is used in conjunction with 
 MEMCACHED_BEHAVIOR_BUFFER_REQUESTS (see memcached_behavior(3)) to flush
-all buffers by sending the buffered commands to the server for processing..
+all buffers by sending the buffered commands to the server for processing.
 
 =head1 RETURN
 
-A value of type C<memcached_return> is returned
+A value of type C<memcached_return_t> is returned
 On success that value will be C<MEMCACHED_SUCCESS>.
 Use memcached_strerror() to translate this value to a printable string.
 
 =head1 HOME
 
 To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
 
 =head1 AUTHOR
 
-Trond Norbye, E<lt>trond.norbye@sun.comE<gt>
+Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
 
 =head1 SEE ALSO