Skip to content

Commit 00b3d26

Browse files
committed
Added the suggestions made by the great @wouterj
1 parent 79bf0a1 commit 00b3d26

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

book/http_cache.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ Cache Invalidation
10341034
------------------
10351035

10361036
"There are only two hard things in Computer Science: cache invalidation
1037-
and naming things." Phil Karlton
1037+
and naming things." -- Phil Karlton
10381038

10391039
You should never need to invalidate cached data because invalidation is already
10401040
taken into account natively in the HTTP cache models. If you use validation,

book/routing.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -850,9 +850,7 @@ uses a simple string pattern called the *logical controller name*, which
850850
Symfony maps to a specific PHP method and class. The pattern has three parts,
851851
each separated by a colon:
852852

853-
.. code-block:: text
854-
855-
bundle:controller:action
853+
**bundle**:**controller**:**action**
856854

857855
For example, a ``_controller`` value of ``AcmeBlogBundle:Blog:show`` means:
858856

cookbook/configuration/environments.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ However, each environment caches its own set of files:
318318
<your-project>/
319319
├─ app/
320320
│ ├─ cache/
321-
│ │ ├─ dev/ // cache directory for the *dev* environment
322-
│ │ └─ prod/ // cache directory for the *prod* environment
321+
│ │ ├─ dev/ # cache directory for the *dev* environment
322+
│ │ └─ prod/ # cache directory for the *prod* environment
323323
│ ├─ ...
324324
325325
Sometimes, when debugging, it may be helpful to inspect a cached file to

0 commit comments

Comments
 (0)