Skip to content

Commit 2192c32

Browse files
committed
minor #3650 Fixing some build errors (xabbuh)
This PR was merged into the 2.3 branch. Discussion ---------- Fixing some build errors | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | Commits ------- 62d4a97 fix seealso directive name 62586a4 fix table syntax 72659e2 fix PHP code block c7f2ee6 fixing doc roles
2 parents fa3f531 + 62d4a97 commit 2192c32

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Diff for: components/form/type_guesser.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ that the type guesser cannot guess the type.
7474

7575
The ``TypeGuess`` constructor requires 3 options:
7676

77-
* The type name (one of the :doc:`form types </reference/forms/types`);
77+
* The type name (one of the :doc:`form types </reference/forms/types>`);
7878
* Additional options (for instance, when the type is ``entity``, you also
7979
want to set the ``class`` option). If no types are guessed, this should be
8080
set to an empty array;

Diff for: components/security/authentication.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ own, it just needs to follow these rules:
204204
:method:`Symfony\\Component\\Security\\Core\\Encoder\\PasswordEncoderInterface::isPasswordValid`
205205
must first of all make sure the password is not too long, i.e. the password length is no longer
206206
than 4096 characters. This is for security reasons (see `CVE-2013-5750`_), and you can use the
207-
:method:`Symfony\\Component\\Security\\Core\\Encoder\\BasePasswordEncoder::isPasswordTooLong`_
208-
method for this check:
207+
:method:`Symfony\\Component\\Security\\Core\\Encoder\\BasePasswordEncoder::isPasswordTooLong`
208+
method for this check::
209209

210210
use Symfony\Component\Security\Core\Exception\BadCredentialsException;
211211

Diff for: cookbook/email/cloud.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ How to use the Cloud to Send Emails
77
Requirements for sending emails from a production system differ from your
88
development setup as you don't want to be limited in the number of emails,
99
the sending rate or the sender address. Thus,
10-
:doc:`using Gmail </cookbook/email/gmail>`_ or similar services is not an
10+
:doc:`using Gmail </cookbook/email/gmail>` or similar services is not an
1111
option. If setting up and maintaining your own reliable mail server causes
1212
you a headache there's a simple solution: Leverage the cloud to send your
1313
emails.

Diff for: reference/constraints/Valid.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ object and all sub-objects associated with it.
99
| Applies to | :ref:`property or method <validation-property-target>` |
1010
+----------------+---------------------------------------------------------------------+
1111
| Options | - `traverse`_ |
12-
| | - `message`_ |
12+
| | - `message`_ |
1313
+----------------+---------------------------------------------------------------------+
1414
| Class | :class:`Symfony\\Component\\Validator\\Constraints\\Type` |
1515
+----------------+---------------------------------------------------------------------+

Diff for: reference/dic_tags.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ process. By default, form guessing is done by "guessers" based on the validation
344344
metadata and Doctrine metadata (if you're using Doctrine) or Propel metadata
345345
(if you're using Propel).
346346
347-
.. seelalso::
347+
.. seealso::
348348
349349
For information on how to create your own type guesser, see
350350
:doc:`/components/form/type_guesser`.
@@ -847,7 +847,7 @@ swiftmailer.default.plugin
847847
848848
If you're using a custom SwiftMailer plugin (or want to create one), you can
849849
register it with SwiftMailer by creating a service for your plugin and tagging
850-
it with ``swiftmailer.default.plugin`` (it has no options).
850+
it with ``swiftmailer.default.plugin`` (it has no options).
851851
852852
.. note::
853853

0 commit comments

Comments
 (0)