summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-16 16:06:04 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-16 16:06:04 +0000
commit856f66774597f3acac5549203cac6441ef5f8fd5 (patch)
tree7746e8e0cd9fceea4916771c128a582e9f617a45 /includes
parent47413f64604422556a32b4aa6594a659101413ff (diff)
downloadbrdo-856f66774597f3acac5549203cac6441ef5f8fd5.tar.gz
brdo-856f66774597f3acac5549203cac6441ef5f8fd5.tar.bz2
- Patch #355360 by burningdog, spatz4000, netaustin: standardize on 'cacheable'.
Diffstat (limited to 'includes')
-rw-r--r--includes/cache.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/cache.inc b/includes/cache.inc
index be98f31ef..c96f46058 100644
--- a/includes/cache.inc
+++ b/includes/cache.inc
@@ -66,7 +66,7 @@ function cache_get($cid, $table = 'cache') {
* users. This is the only table affected by the page cache setting on
* the administrator panel.
*
- * 'cache_menu': Stores the cachable part of the users' menus.
+ * 'cache_menu': Stores the cacheable part of the users' menus.
*
* 'cache_filter': Stores filtered pieces of content. This table is
* periodically cleared of stale entries by cron.
@@ -79,7 +79,7 @@ function cache_get($cid, $table = 'cache') {
* - we try to put fast changing cache items and rather static
* ones into different tables. The effect is that only the fast
* changing tables will need a lot of writes to disk. The more
- * static tables will also be better cachable with MySQL's query cache
+ * static tables will also be better cacheable with MySQL's query cache
*
* @param $cid
* The cache ID of the data to store.