From: Aaron Schulz Date: Wed, 17 Sep 2014 18:30:07 +0000 (-0700) Subject: Doc typo fixes X-Git-Tag: 1.31.0-rc.0~13977^2 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=ca62566ab9dbd54220a72774f445fbf71d66c3c4;p=lhc%2Fweb%2Fwiklou.git Doc typo fixes Change-Id: I41286754185dbd1d23f409dfb60eb0fe9d4aa5f5 --- diff --git a/includes/cache/bloom/BloomCacheRedis.php b/includes/cache/bloom/BloomCacheRedis.php index 7bafc99369..212e5e8ba9 100644 --- a/includes/cache/bloom/BloomCacheRedis.php +++ b/includes/cache/bloom/BloomCacheRedis.php @@ -20,11 +20,11 @@ */ /** - * Bloom filter implented using Redis + * Bloom filter implemented using Redis * * The Redis server must be >= 2.6 and should have volatile-lru or volatile-ttl * if there is any eviction policy. It should not be allkeys-* in any case. Also, - * this can be used in a simple master/slave setup or with Redis Sentinal preferably. + * this can be used in a simple master/slave setup or with Redis Sentinel preferably. * * Some bits are based on https://github.com/ErikDubbelboer/redis-lua-scaling-bloom-filter * but are simplified to use a single filter instead of up to 32 filters.