From 63d391b3098930eada080b41e295f0e824c10674 Mon Sep 17 00:00:00 2001 From: Panagiotis Moustafellos Date: Tue, 29 Oct 2013 01:03:22 +0200 Subject: [PATCH] typo fix s/value to be cached value/value to be cached/g --- framework/yii/caching/Cache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/yii/caching/Cache.php b/framework/yii/caching/Cache.php index f9d117d..b2d96dc 100644 --- a/framework/yii/caching/Cache.php +++ b/framework/yii/caching/Cache.php @@ -192,7 +192,7 @@ abstract class Cache extends Component implements \ArrayAccess * If the cache already contains such a key, the existing value and * expiration time will be replaced with the new ones, respectively. * - * @param mixed $key a key identifying the value to be cached value. This can be a simple string or + * @param mixed $key a key identifying the value to be cached. This can be a simple string or * a complex data structure consisting of factors representing the key. * @param mixed $value the value to be cached * @param integer $expire the number of seconds in which the cached value will expire. 0 means never expire. @@ -218,7 +218,7 @@ abstract class Cache extends Component implements \ArrayAccess /** * Stores a value identified by a key into cache if the cache does not contain this key. * Nothing will be done if the cache already contains the key. - * @param mixed $key a key identifying the value to be cached value. This can be a simple string or + * @param mixed $key a key identifying the value to be cached. This can be a simple string or * a complex data structure consisting of factors representing the key. * @param mixed $value the value to be cached * @param integer $expire the number of seconds in which the cached value will expire. 0 means never expire.