Skip to content

Commit d49d12e

Browse files
committed
[Reference] consistent headlines
1 parent 0702d1f commit d49d12e

32 files changed

+70
-64
lines changed

reference/configuration/assetic.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.. index::
2-
pair: Assetic; Configuration reference
2+
pair: Assetic; Configuration reference
33

44
AsseticBundle Configuration ("assetic")
55
=======================================
66

7-
Full Default Configuration
7+
Full default Configuration
88
~~~~~~~~~~~~~~~~~~~~~~~~~~
99

1010
.. configuration-block::

reference/configuration/doctrine.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
.. index::
2-
single: Doctrine; ORM configuration reference
3-
single: Configuration reference; Doctrine ORM
2+
single: Doctrine; ORM configuration reference
3+
single: Configuration reference; Doctrine ORM
44

55
DoctrineBundle Configuration ("doctrine")
66
=========================================
77

8+
Full default configuration
9+
--------------------------
10+
811
.. configuration-block::
912

1013
.. code-block:: yaml

reference/configuration/framework.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. index::
2-
single: Configuration reference; Framework
2+
single: Configuration reference; Framework
33

44
FrameworkBundle Configuration ("framework")
55
===========================================
@@ -439,7 +439,7 @@ and activate the data collectors by hand::
439439

440440
$profiler->enable();
441441

442-
Full Default Configuration
442+
Full default Configuration
443443
--------------------------
444444

445445
.. configuration-block::

reference/configuration/monolog.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
.. index::
2-
pair: Monolog; Configuration reference
2+
pair: Monolog; Configuration reference
33

44
MonologBundle Configuration ("monolog")
55
=======================================
66

7+
Full default Configuration
8+
--------------------------
9+
710
.. configuration-block::
811

912
.. code-block:: yaml

reference/configuration/security.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
.. index::
2-
single: Security; Configuration reference
2+
single: Security; Configuration reference
33

44
SecurityBundle Configuration ("security")
55
=========================================
66

77
The security system is one of the most powerful parts of Symfony2, and can
88
largely be controlled via its configuration.
99

10-
Full Default Configuration
10+
Full default Configuration
1111
--------------------------
1212

1313
The following is the full default configuration for the security system.
@@ -281,7 +281,7 @@ Redirecting after Login
281281

282282
.. _reference-security-pbkdf2:
283283

284-
Using the PBKDF2 encoder: Security and Speed
284+
Using the PBKDF2 Encoder: Security and Speed
285285
--------------------------------------------
286286

287287
.. versionadded:: 2.2

reference/configuration/swiftmailer.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. index::
2-
single: Configuration reference; Swift Mailer
2+
single: Configuration reference; Swift Mailer
33

44
SwiftmailerBundle Configuration ("swiftmailer")
55
===============================================
@@ -172,7 +172,7 @@ logging
172172
If true, Symfony's data collector will be activated for Swift Mailer and the
173173
information will be available in the profiler.
174174

175-
Full Default Configuration
175+
Full default Configuration
176176
--------------------------
177177

178178
.. configuration-block::
@@ -224,7 +224,7 @@ Full Default Configuration
224224
/>
225225
</swiftmailer:config>
226226
227-
Using Multiple Mailers
227+
Using multiple Mailers
228228
----------------------
229229

230230
You can configure multiple mailers by grouping them under the ``mailers``

reference/configuration/twig.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. index::
2-
pair: Twig; Configuration reference
2+
pair: Twig; Configuration reference
33

44
TwigBundle Configuration ("twig")
55
=================================

reference/configuration/web_profiler.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.. index::
2-
single: Configuration reference; WebProfiler
2+
single: Configuration reference; WebProfiler
33

44
WebProfilerBundle Configuration ("web_profiler")
55
================================================
66

7-
Full Default Configuration
7+
Full default Configuration
88
--------------------------
99

1010
.. configuration-block::

reference/constraints/CardScheme.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ on an object that will contain a credit card number.
6161
6262
// src/Acme/SubscriptionBundle/Entity/Transaction.php
6363
namespace Acme\SubscriptionBundle\Entity\Transaction;
64-
64+
6565
use Symfony\Component\Validator\Constraints as Assert;
6666
6767
class Transaction
@@ -76,7 +76,7 @@ on an object that will contain a credit card number.
7676
7777
// src/Acme/SubscriptionBundle/Entity/Transaction.php
7878
namespace Acme\SubscriptionBundle\Entity\Transaction;
79-
79+
8080
use Symfony\Component\Validator\Mapping\ClassMetadata;
8181
use Symfony\Component\Validator\Constraints as Assert;
8282
@@ -99,7 +99,7 @@ Available Options
9999
-----------------
100100

101101
schemes
102-
-------
102+
~~~~~~~
103103

104104
**type**: ``mixed`` [:ref:`default option <validation-default-option>`]
105105

reference/constraints/Collection.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ the above example, the ``allowMissingFields`` option was set to true, meaning
169169
that if either of the ``personal_email`` or ``short_bio`` elements were missing
170170
from the ``$personalData`` property, no validation error would occur.
171171

172-
Required and Optional Field Constraints
172+
Required and optional Field Constraints
173173
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
174174

175175
.. versionadded:: 2.3
@@ -187,7 +187,7 @@ field is optional but must be a valid email if supplied, you can do the followin
187187
.. configuration-block::
188188

189189
.. code-block:: yaml
190-
190+
191191
# src/Acme/BlogBundle/Resources/config/validation.yml
192192
Acme\BlogBundle\Entity\Author:
193193
properties:
@@ -223,9 +223,9 @@ field is optional but must be a valid email if supplied, you can do the followin
223223
'personal_email',
224224
);
225225
}
226-
226+
227227
.. code-block:: xml
228-
228+
229229
<!-- src/Acme/BlogBundle/Resources/config/validation.xml -->
230230
<?xml version="1.0" encoding="UTF-8" ?>
231231
<constraint-mapping xmlns="http://symfony.com/schema/dic/constraint-mapping"

0 commit comments

Comments
 (0)