Skip to content
Snippets Groups Projects
Commit 343d6e7e authored by Hai-Nam Nguyen's avatar Hai-Nam Nguyen Committed by Sascha Grossenbacher
Browse files

Issue #3104814 by jcisio: Spelling mistakes in doc

parent 3475e59e
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,9 @@ abstract class CacheBase implements CacheBackendInterface {
const LIFETIME_PERM_DEFAULT = 31536000;
/**
* Computed keys are let's say arround 60 characters length due to
* Computed keys are let's say around 60 characters length due to
* key prefixing, which makes 1,000 keys DEL command to be something
* arround 50,000 bytes length: this is huge and may not pass into
* around 50,000 bytes length: this is huge and may not pass into
* Redis, let's split this off.
* Some recommend to never get higher than 1,500 bytes within the same
* command which makes us forced to split this at a very low threshold:
......@@ -63,7 +63,7 @@ abstract class CacheBase implements CacheBackendInterface {
* Default TTL for CACHE_PERMANENT items.
*
* See "Default lifetime for permanent items" section of README.md
* file for a comprehensive explaination of why this exists.
* file for a comprehensive explanation of why this exists.
*
* @var int
*/
......
......@@ -3,7 +3,7 @@
namespace Drupal\redis;
/**
* Client proxy, client handling class tied to the bare mininum.
* Client proxy, client handling class tied to the bare minimum.
*/
interface ClientInterface {
/**
......@@ -15,7 +15,7 @@ interface ClientInterface {
public function getClient($host = NULL, $port = NULL, $base = NULL);
/**
* Get underlaying library name used.
* Get underlying library name used.
*
* This can be useful for contribution code that may work with only some of
* the provided clients.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment