Minor docblock updates.

This commit is contained in:
Justin Hileman
2013-12-14 12:36:47 -08:00
parent 77b88cd74f
commit e24f5c744a
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
* $cache = new Mustache_Cache_FilesystemCache(dirname(__FILE__).'/cache'); * $cache = new Mustache_Cache_FilesystemCache(dirname(__FILE__).'/cache');
* $cache->cache($className, $compiledSource); * $cache->cache($className, $compiledSource);
* *
* Benefits from any opcode caching that may be setup in your environment. * The FilesystemCache benefits from any opcode caching that may be setup in your environment. So do that, k?
*/ */
class Mustache_Cache_FilesystemCache extends Mustache_Cache_AbstractCache class Mustache_Cache_FilesystemCache extends Mustache_Cache_AbstractCache
{ {
+2 -2
View File
@@ -12,8 +12,8 @@
/** /**
* Mustache Cache in-memory implementation. * Mustache Cache in-memory implementation.
* *
* In-memory implementation useful during development. * The in-memory cache is used for uncached lambda section templates. It's also useful during development, but is not
* Not recommended for production use. * recommended for production use.
*/ */
class Mustache_Cache_NoopCache extends Mustache_Cache_AbstractCache class Mustache_Cache_NoopCache extends Mustache_Cache_AbstractCache
{ {