Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7db929c

Browse files
committed
corrected spelling/grammar
1 parent c49d427 commit 7db929c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

components/cache/adapters/apcu_adapter.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ APCu Cache Adapter
1010
This adapter is a high-performance, shared memory cache. It can increase the
1111
application performance very significantly because the cache contents are
1212
stored in the shared memory of your server, a component that is much faster than
13-
others, such as the file system.
13+
others, such as the filesystem.
1414

1515
.. caution::
1616

@@ -46,7 +46,7 @@ parameter::
4646

4747
.. tip::
4848

49-
Note that this adapters CRUD operations are specific to the PHP SAPI it is running
49+
Note that this adapter's CRUD operations are specific to the PHP SAPI it is running
5050
under. This means adding a cache item using the CLI will not result in the item
5151
appearing under FPM. Likewise, deletion of an item using CGI will not result in the
5252
item being deleted under the CLI.

components/cache/adapters/chain_adapter.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ maximum cache lifetime as its second parameter::
2525

2626
.. note::
2727

28-
When an item is not found in the first adapters but is found in the next ones, this
28+
When an item is not found in the first adapter but is found in the next ones, this
2929
adapter ensures that the fetched item is saved in all the adapters where it was
3030
previously missing.
3131

32-
The following shows how to create a chain adapter instance using the fastest and slowest
33-
storage engines, :class:`Symfony\\Component\\Cache\\Adapter\\ApcuAdapter` and
32+
The following example shows how to create a chain adapter instance using the fastest and
33+
slowest storage engines, :class:`Symfony\\Component\\Cache\\Adapter\\ApcuAdapter` and
3434
:class:`Symfony\\Component\\Cache\\Adapter\\FilesystemAdapter`, respectfully::
3535

3636
use Symfony\Component\Cache\Adapter\ApcuAdapter;

0 commit comments

Comments
 (0)