Skip to content

Commit a3e69e2

Browse files
committed
Tweaks based on feedback!
1 parent 1b6cb69 commit a3e69e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/cache/cache_pools.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Php Files Cache Adapter
6262
~~~~~~~~~~~~~~~~~~~~~~~
6363

6464
This adapter is very similar to the Filesystem adapter, except that the saving creates
65-
a ``.php`` file, which is included on fetch (allowing the file to me saved in OpCache)::
65+
a ``.php`` file, which is included on fetch (allowing the file to be saved in OPcache)::
6666

6767
use Symfony\Component\Cache\Adapter\PhpFilesAdapter;
6868

@@ -212,12 +212,12 @@ Php Array Cache Adapter
212212
~~~~~~~~~~~~~~~~~~~~~~~
213213

214214
This adapter is a highly performant way to cache static data (e.g. application configuration)
215-
that is optimized and preloaded into OpCache memory storage::
215+
that is optimized and preloaded into OPcache memory storage::
216216

217217
use Symfony\Component\Cache\Adapter\PhpArrayAdapter;
218218
use Symfony\Component\Cache\Adapter\PhpFilesAdapter;
219219

220-
// somehow, decide it's time to warmup the cache!
220+
// somehow, decide it's time to warm up the cache!
221221
if ($needsWarmup) {
222222
// some static values
223223
$values = array(

0 commit comments

Comments
 (0)