Skip to content

Fix doubled words #2657

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 26, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/config/definition.rst
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ and sometimes only:

By default ``connection`` would be an array in the first case and a string
in the second making it difficult to validate. You can ensure it is always
an array with with ``fixXmlConfig``.
an array with ``fixXmlConfig``.

You can further control the normalization process if you need to. For example,
you may want to allow a string to be set and used as a particular key or several
Expand Down
2 changes: 1 addition & 1 deletion components/event_dispatcher/container_aware_dispatcher.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Adding Subscriber Services
``EventSubscribers`` can be added using the
:method:`Symfony\\Component\\EventDispatcher\\ContainerAwareEventDispatcher::addSubscriberService`
method where the first argument is the service ID of the subscriber service,
and the second argument is the the service's class name (which must implement
and the second argument is the service's class name (which must implement
:class:`Symfony\\Component\\EventDispatcher\\EventSubscriberInterface`) as follows::

$dispatcher->addSubscriberService(
Expand Down
2 changes: 1 addition & 1 deletion cookbook/console/sending_emails.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ How to generate URLs and send Emails from the Console
=====================================================

Unfortunately, the command line context does not know about your VirtualHost
or domain name. This means that if if you generate absolute URLs within a
or domain name. This means that if you generate absolute URLs within a
Console Command you'll probably end up with something like ``http://localhost/foo/bar``
which is not very useful.

Expand Down
2 changes: 1 addition & 1 deletion cookbook/deployment-tools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The typical steps taken while deploying a Symfony2 application include:

A deployment may also include other things, such as:

* Tagging a particular version of of your code as a release in your source control repository;
* Tagging a particular version of your code as a release in your source control repository;
* Creating a temporary staging area to build your updated setup "offline";
* Running any tests available to ensure code and/or server stability;
* Removal of any unnecessary files from ``web`` to keep your production environment clean;
Expand Down
2 changes: 1 addition & 1 deletion reference/constraints/Collection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ field is optional but must be a valid email if supplied, you can do the followin

Even without ``allowMissingFields`` set to true, you can now omit the ``alternate_email``
property completely from the ``profileData`` array, since it is ``Optional``.
However, if the the ``personal_email`` field does not exist in the array,
However, if the ``personal_email`` field does not exist in the array,
the ``NotBlank`` constraint will still be applied (since it is wrapped in
``Required``) and you will receive a constraint violation.

Expand Down
10 changes: 5 additions & 5 deletions reference/constraints/Length.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
min: 2
max: 50
minMessage: "Your first name must be at least {{ limit }} characters length"
maxMessage: "Your first name cannot be longer than than {{ limit }} characters length"
maxMessage: "Your first name cannot be longer than {{ limit }} characters length"

.. code-block:: php-annotations

Expand All @@ -55,7 +55,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
* min = "2",
* max = "50",
* minMessage = "Your first name must be at least {{ limit }} characters length",
* maxMessage = "Your first name cannot be longer than than {{ limit }} characters length"
* maxMessage = "Your first name cannot be longer than {{ limit }} characters length"
* )
*/
protected $firstName;
Expand All @@ -70,7 +70,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
<option name="min">2</option>
<option name="max">50</option>
<option name="minMessage">Your first name must be at least {{ limit }} characters length</option>
<option name="maxMessage">Your first name cannot be longer than than {{ limit }} characters length</option>
<option name="maxMessage">Your first name cannot be longer than {{ limit }} characters length</option>
</constraint>
</property>
</class>
Expand All @@ -91,7 +91,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
'min' => 2,
'max' => 50,
'minMessage' => 'Your first name must be at least {{ limit }} characters length',
'maxMessage' => 'Your first name cannot be longer than than {{ limit }} characters length',
'maxMessage' => 'Your first name cannot be longer than {{ limit }} characters length',
)));
}
}
Expand Down Expand Up @@ -121,7 +121,7 @@ charset
**type**: ``string`` **default**: ``UTF-8``

The charset to be used when computing value's length. The :phpfunction:`grapheme_strlen` PHP
function is used if available. If not, the the :phpfunction:`mb_strlen` PHP function
function is used if available. If not, the :phpfunction:`mb_strlen` PHP function
is used if available. If neither are available, the :phpfunction:`strlen` PHP function
is used.

Expand Down