Added tag .23 for changeset 86b581b9fdb8
[awesomized/libmemcached] / docs / libmemcached.pod
index 1e63c8ce178f345ff4467b9209858a4f2af5ca61..b950a63d82cf2f827de4fd4b499366dc85a8243d 100755 (executable)
@@ -33,7 +33,7 @@ written in order to encapsulate the C<memcached_st>. It is not
 recommended that you operate directly against the structure.
 
 Nearly all functions return a C<memcached_return> value.
-This value can be translated to a printable string with memcached_strerr(3).
+This value can be translated to a printable string with memcached_strerror(3).
 
 Partitioning based on keys is supported in the library. Using the key partioning 
 functions it is possible to group sets of object onto servers.
@@ -106,8 +106,8 @@ Major version value. Such as 1.23.4, would be 4
 
 When using threads or forked processes it is important to keep an instance
 of C<memcached_st> per process or thread. Without creating your own locking
-structures you can no share a single C<memcached_st>. You can though call
-memcached_close(3) on a C<memcached_st> and then use the resulting cloned
+structures you can not share a single C<memcached_st>. You can though call
+memcached_quit(3) on a C<memcached_st> and then use the resulting cloned
 structure.
 
 =head1 HOME