A number of fixes/etc.
[m6w6/libmemcached] / docs / libmemcached_examples.pod
index 510c920693ae331e3828b9d6e7d98fcf179aa928..1c937fe7c9b41fcbb0de74eed346bfab2b04ef47 100644 (file)
@@ -11,7 +11,7 @@ the library.
 =head2 Creating and Freeing structure
 
   memcached_st *memc;
-  memcached_return rc;
+  memcached_return_t rc;
 
   memc= memcached_create(NULL);
   ...do stuff...
@@ -74,7 +74,7 @@ It is best practice to always look at the return value of any operation.
 
 =head2 Fetching multiple values
 
-  memcached_return rc;
+  memcached_return_t rc;
   char *keys[]= {"fudge", "son", "food"};
   size_t key_length[]= {5, 3, 4};
   unsigned int x;
@@ -101,7 +101,7 @@ C<MEMCACHED_MAX_KEY> is provided for usage.
 =head1 HOME
 
 To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
 
 =head1 AUTHOR