Skip to content

Commit b02f1c5

Browse files
committed
minor #11386 Update cache.rst (poliveras)
This PR was merged into the 4.2 branch. Discussion ---------- Update cache.rst Correct language typos <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 35e4bae Update cache.rst
2 parents 9fa1a53 + 35e4bae commit b02f1c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cache.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ of:
5151
provider then a service is automatically created.
5252

5353
There are two pools that are always enabled by default. They are ``cache.app`` and
54-
``cache.system``. The system cache is use for things like annotations, serializer,
54+
``cache.system``. The system cache is used for things like annotations, serializer,
5555
and validation. The ``cache.app`` can be used in your code. You can configure which
5656
adapter (template) they use by using the ``app`` and ``system`` key like:
5757

@@ -329,7 +329,7 @@ For advanced configurations it could sometimes be useful to use a pool as an ada
329329
Custom Provider Options
330330
-----------------------
331331

332-
Some providers have specific options that could be configured. The
332+
Some providers have specific options that can be configured. The
333333
:doc:`RedisAdapter </components/cache/adapters/redis_adapter>` allows you to
334334
create providers with option ``timeout``, ``retry_interval``. etc. To use these
335335
options with non-default values you need to create your own ``\Redis`` provider
@@ -406,7 +406,7 @@ and use that when configuring the pool.
406406
Creating a Cache Chain
407407
----------------------
408408

409-
Different cache adapters has different strengths and weaknesses. Some might be really
409+
Different cache adapters have different strengths and weaknesses. Some might be really
410410
quick but small and some may be able to contain a lot of data but are quite slow.
411411
To get the best of both worlds you may use a chain of adapters. The idea is to
412412
first look at the quick adapter and then move on to slower adapters. In the worst

0 commit comments

Comments
 (0)