8000 be keen to newcomers · symfony/symfony-docs@915f639 · GitHub
[go: up one dir, main page]

Skip to content

Commit 915f639

Browse files
committed
be keen to newcomers
1 parent e9c58ec commit 915f639

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

create_framework/event_dispatcher.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ The EventDispatcher Component
33

44
Our framework is still missing a major characteristic of any good framework:
55
*extensibility*. Being extensible means that the developer should be able to
6-
easily hook into the framework life cycle to modify the way the request is
7-
handled.
6+
hook into the framework life cycle to modify the way the request is handled.
87

98
What kind of hooks are we talking about? Authentication or caching for
109
instance. To be flexible, hooks must be plug-and-play; the ones you "register"

create_framework/routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ more flexible than the previous one. Enjoy!
189189
Using the Routing component has one big additional benefit: the ability to
190190
generate URLs based on Route definitions. When using both URL matching and URL
191191
generation in your code, changing the URL patterns should have no other
192-
impact. Want to know how to use the generator? Insanely easy::
192+
impact. You can use the generator this way::
193193

194194
use Symfony\Component\Routing;
195195

http_cache.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,8 @@ but is a great way to start.
7777

7878
For details on setting up Varnish, see :doc:`/http_cache/varnish`.
7979

80-
Enabling the proxy is easy: each application comes with a caching kernel (``AppCache``)
81-
that wraps the default one (``AppKernel``). The caching Kernel *is* the reverse
82-
proxy.
80+
Each application comes with a caching kernel (``AppCache``)that wraps the
81+
default one (``AppKernel``). The caching Kernel *is* the reverse proxy.
8382

8483
To enable caching, modify the code of your front controller. You can also make these
8584
changes to ``app_dev.php`` to add caching to the ``dev`` environment::
@@ -267,7 +266,7 @@ Validation Caching
267266
single: Cache; Cache-Control header
268267
single: HTTP headers; Cache-Control
269268

270-
With expiration caching, you simply say "cache for 3600 seconds!". But, when someone
269+
With expiration caching, you say "cache for 3600 seconds!". But, when someone
271270
updates cached content, you won't see that content on your site until the cache
272271
expires.
273272

0 commit comments

Comments
 (0)
0