Made the memcached_string stuff private, but still testable.
[m6w6/libmemcached] / docs / memcached_flush_buffers.pod
index a655e70bdea41d119c279f636f7d3094e5c64e4a..7dd980325d419bffbe80cd44d475c2f52404dd7c 100644 (file)
@@ -10,18 +10,18 @@ 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.