1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
Description: Spelling corrections for pod pages
Author: Christopher Hoskin <christopher.hoskin@gmail.com>
Forwarded: https://github.com/timbunce/Memcached-libmemcached/pull/25
Last-Update: 2016-02-04
--- a/lib/Memcached/libmemcached/memcached_behavior.pm
+++ b/lib/Memcached/libmemcached/memcached_behavior.pm
@@ -240,13 +240,13 @@
=item MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
Find the current size of SO_SNDBUF. A value of 0 means either an error
-occured or no hosts were available. It is safe to assume system default
+occurred or no hosts were available. It is safe to assume system default
if this occurs.
=item MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
Find the current size of SO_RCVBUF. A value of 0 means either an error
-occured or no hosts were available. It is safe to assume system default
+occurred or no hosts were available. It is safe to assume system default
if this occurs.
=item MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
--- a/lib/Memcached/libmemcached/memcached_callback.pm
+++ b/lib/Memcached/libmemcached/memcached_callback.pm
@@ -41,12 +41,12 @@
=item MEMCACHED_CALLBACK_CLEANUP_FUNCTION
-When memcached_delete() is called this function will be excuted. At the
+When memcached_delete() is called this function will be executed. At the
point of its execution all connections have been closed.
=item MEMCACHED_CALLBACK_CLONE_FUNCTION
-When memcached_delete() is called this function will be excuted. At the
+When memcached_delete() is called this function will be executed. At the
point of its execution all connections have been closed.
=item MEMCACHED_CALLBACK_PREFIX_KEY
@@ -83,7 +83,7 @@
returned to the calling process. You must clone the memcached_st in order to
make use of it. The value will be stored only if you return
MEMCACHED_SUCCESS or MEMCACHED_BUFFERED. Returning MEMCACHED_BUFFERED will
-cause the object to be buffered and not sent immediatly (if this is the default behavior based on your connection setup this will happen automatically).
+cause the object to be buffered and not sent immediately (if this is the default behavior based on your connection setup this will happen automatically).
The prototype for this is:
memcached_return_t (*memcached_trigger_key)(memcached_st *ptr, char *key, size_t key_length, memcached_result_st *result);
--- a/lib/Memcached/libmemcached/memcached_dump.pm
+++ b/lib/Memcached/libmemcached/memcached_dump.pm
@@ -26,7 +26,7 @@
=head1 DESCRIPTION
memcached_dump() is used to get a list of keys found memcached(1) servers.
-Because memcached(1) does not guarentee to dump all keys you can not assume
+Because memcached(1) does not guarantee to dump all keys you can not assume
you have fetched all keys from the server. The function takes an array
of callbacks that it will use to execute on keys as they are found.
|