Fix Trond's email address.
[awesomized/libmemcached] / docs / memcached_server_st.pod
index 08ff77851079778657eb8420e575d04c8e0f975c..32d4e1e98344b014e88fae9564707b3f9dfd9c69 100644 (file)
@@ -17,15 +17,15 @@ C Client Library for memcached (libmemcached, -lmemcached)
     memcached_server_list_append (memcached_server_st *ptr, 
                                   const char *hostname,
                                   unsigned int port, 
-                                  memcached_return *error);
+                                  memcached_return_t *error);
 
   unsigned int memcached_server_list_count (memcached_server_st *ptr);
 
   memcached_server_st *memcached_servers_parse (const char *server_strings);
 
-  const char *memcached_server_error(memcached_server_st *ptr);
+  const char *memcached_server_error (memcached_server_st *ptr);
 
-  void memcached_server_error_reset(memcached_server_st *ptr);
+  void memcached_server_error_reset (memcached_server_st *ptr);
 
 =head1 DESCRIPTION
 
@@ -39,7 +39,7 @@ of memcached_server_st that you passed to it.
 
 memcached_server_list_append() adds a server to the end of a
 memcached_server_st array. On error null will be returned and the
-memcached_return pointer you passed into the function will be set with the
+memcached_return_t pointer you passed into the function will be set with the
 appropriate error. If the value of port is zero, it is set to the default
 port of a memcached server.
 
@@ -61,7 +61,7 @@ Varies, see particular functions.
 =head1 HOME
 
 To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
 
 =head1 AUTHOR