Skip to content

Commit a52abf2

Browse files
committed
Merge branch '2.2' into 2.3
2 parents 8313805 + 6fbf49a commit a52abf2

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

book/http_fundamentals.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -531,9 +531,9 @@ regardless of how your project is developed. To name a few:
531531
PHP classes to be used without needing to manually ``require`` the files
532532
containing those classes;
533533

534-
* :doc:`Templating</components/templating>` A toolkit for rendering templates,
535-
handling template inheritance (i.e. a template is decorated with a layout)
536-
and performing other common template tasks;
534+
* :doc:`Templating</components/templating/introduction>` A toolkit for rendering
535+
templates, handling template inheritance (i.e. a template is decorated with
536+
a layout) and performing other common template tasks;
537537

538538
* `Security`_ - A powerful library for handling all types of security inside
539539
an application;

book/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ If there are any issues, correct them now before moving on.
229229

230230
Many systems allow you to use the ``chmod +a`` command. Try this first,
231231
and if you get an error - try the next method. This uses a command to
232-
try to determine your web server user and set is as ``APACHEUSER``:
232+
try to determine your web server user and set it as ``APACHEUSER``:
233233

234234
.. code-block:: bash
235235
@@ -241,12 +241,12 @@ If there are any issues, correct them now before moving on.
241241
$ sudo chmod +a "`whoami` allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs
242242
243243
244-
**2. Using Acl on a system that does not support chmod +a**
244+
**2. Using ACL on a system that does not support chmod +a**
245245

246246
Some systems don't support ``chmod +a``, but do support another utility
247247
called ``setfacl``. You may need to `enable ACL support`_ on your partition
248248
and install setfacl before using it (as is the case with Ubuntu). This
249-
uses a command to try to determine your web server user and set is as
249+
uses a command to try to determine your web server user and set it as
250250
``APACHEUSER``:
251251

252252
.. code-block:: bash

book/routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ file:
173173
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd
174174
http://symfony.com/schema/dic/symfony http://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
175175
176-
<framework:config ...>
176+
<framework:config>
177177
<!-- ... -->
178178
<framework:router resource="%kernel.root_dir%/config/routing.xml" />
179179
</framework:config>

contributing/documentation/format.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,8 @@ Installing the Sphinx extensions
202202
# enable highlighting for PHP code not between ``<?php ... ?>`` by default
203203
lexers['php'] = PhpLexer(startinline=True)
204204
lexers['php-annotations'] = PhpLexer(startinline=True)
205+
lexers['php-standalone'] = PhpLexer(startinline=True)
206+
lexers['php-symfony'] = PhpLexer(startinline=True)
205207
206208
# use PHP as the primary domain
207209
primary_domain = 'php'

cookbook/bundles/extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ configuration arrays together.
494494
The ``Configuration`` class can be much more complicated than shown here,
495495
supporting array nodes, "prototype" nodes, advanced validation, XML-specific
496496
normalization and advanced merging. You can read more about this in :doc:`the Config Component documentation</components/config/definition>`.
497-
You can also see it action by checking out some of the core Configuration classes,
497+
You can also see it in action by checking out some of the core Configuration classes,
498498
such as the one from the `FrameworkBundle Configuration`_ or the `TwigBundle Configuration`_.
499499

500500
Modifying the configuration of another Bundle

0 commit comments

Comments
 (0)