Skip to content

Commit 70d2dac

Browse files
committed
minor #7000 Several typo fixes (emirb)
This PR was merged into the 2.8 branch. Discussion ---------- Several typo fixes #7000 🍻 Commits ------- 7340268 Several typo fixes
2 parents 13cff5b + 7340268 commit 70d2dac

File tree

14 files changed

+18
-18
lines changed

14 files changed

+18
-18
lines changed

components/console/helpers/table.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ This results in:
182182
.. tip::
183183

184184
You can create a multiple-line page title using a header cell that spans
185-
the enire table width::
185+
the entire table width::
186186

187187
$table->setHeaders(array(
188188
array(new TableCell('Main table title', array('colspan' => 3))),

deployment/fortrabbit.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Configuring the Environment in the Dashboard
175175
PHP Settings
176176
~~~~~~~~~~~~
177177

178-
The PHP version and enabled extensions are configuable under the PHP settings
178+
The PHP version and enabled extensions are configurable under the PHP settings
179179
of your App within the fortrabbit Dashboard.
180180

181181
Environment Variables
@@ -187,7 +187,7 @@ config files get loaded. ENV vars are configuable in fortrabbit Dashboard as wel
187187
Document Root
188188
~~~~~~~~~~~~~
189189

190-
The document root is configuable for every custom domain you setup for your App.
190+
The document root is configurable for every custom domain you setup for your App.
191191
The default is ``/htdocs``, but for Symfony you probably want to change it to
192192
``/htdocs/web``. You also do so in the fortrabbit Dashboard under ``Domain`` settings.
193193

doctrine.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ Doctrine allows you to use any PHP object to hold your data and relies on
842842
mapping metadata information to map an object's data to a particular database
843843
table.
844844

845-
Doctrine has a lot more complex features to learn, like relationshps, complex queries,
845+
Doctrine has a lot more complex features to learn, like relationships, complex queries,
846846
and event listeners.
847847

848848
Learn more

doctrine/associations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ to hold those associated objects.
162162
163163
While the many-to-one mapping shown earlier was mandatory, this one-to-many
164164
mapping is optional. It is included here to help demonstrate Doctrine's range
165-
of relationship management capabailties. Plus, in the context of this application,
165+
of relationship management capabilities. Plus, in the context of this application,
166166
it will likely be convenient for each ``Category`` object to automatically
167167
own a collection of its related ``Product`` objects.
168168

form/data_transformers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Suppose you have a Task form with a tags ``text`` type::
4949
}
5050

5151
Internally the ``tags`` are stored as an array, but displayed to the user as a
52-
simple comma seperated string to make them easier to edit.
52+
simple comma separated string to make them easier to edit.
5353

5454
This is a *perfect* time to attach a custom data transformer to the ``tags``
5555
field. The easiest way to do this is with the :class:`Symfony\\Component\\Form\\CallbackTransformer`

form/direct_submit.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ method, pass the submitted data directly to
8989
When submitting a form via a "PATCH" request, you may want to update only a few
9090
submitted fields. To achieve this, you may pass an optional second boolean
9191
parameter to ``submit()``. Passing ``false`` will remove any missing fields
92-
within the form object. Otherwise, the mising fields will be set to ``null``.
92+
within the form object. Otherwise, the missing fields will be set to ``null``.
9393

9494
.. _form-submit-request:
9595

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ trusted_hosts
315315

316316
A lot of different attacks have been discovered relying on inconsistencies
317317
in handling the ``Host`` header by various software (web servers, reverse
318-
proxies, web frameworks, etc.). Basically, everytime the framework is
318+
proxies, web frameworks, etc.). Basically, every time the framework is
319319
generating an absolute URL (when sending an email to reset a password for
320320
instance), the host might have been manipulated by an attacker.
321321

reference/forms/types/entity.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ These options inherit from the :doc:`ChoiceType </reference/forms/types/choice>`
271271
.. note::
272272

273273
This option expects an array of entity objects (that's actually the same as with
274-
the ``ChoiceType`` field, whichs requires an array of the preferred "values").
274+
the ``ChoiceType`` field, which requires an array of the preferred "values").
275275

276276
.. include:: /reference/forms/types/options/choice_type_translation_domain.rst.inc
277277

security/ldap.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ search_password
196196

197197
**type**: ``string`` **default**: ``null``
198198

199-
This is your read-only user's password, wich will be used to authenticate
199+
This is your read-only user's password, which will be used to authenticate
200200
against the LDAP server in order to fetch the user's information.
201201

202202
default_roles

serializer/custom_encoders.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ How to Create your Custom Encoder
66

77
The :doc:`Serializer Component </components/serializer>` uses Normalizers
88
to transform any data to an array. Then, by leveraging *Encoders*, that data can
9-
be convereted into any data-structure (e.g. JSON).
9+
be converted into any data-structure (e.g. JSON).
1010

1111
The Component provides several built-in encoders that are described
1212
:doc:`in their own section </serializer/encoders>` but you may want

service_container/definitions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ fetched from the container::
9696
.. caution::
9797

9898
Don't use ``get()`` to get a service that you want to inject as constructor
99-
argument, the service is not yet availabe. Instead, use a
99+
argument, the service is not yet available. Instead, use a
100100
``Reference`` instance as shown above.
101101

102102
Method Calls

service_container/service_decoration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ convention, the old ``app.mailer`` service is renamed to
154154
155155
use Symfony\Component\DependencyInjection\Reference;
156156
157-
$container->register('app.decorating_mailer', 'AppBundle\DeocratingMailer')
157+
$container->register('app.decorating_mailer', 'AppBundle\DecoratingMailer')
158158
->setDecoratedService('foo', 'app.decorating_mailer.wooz')
159159
->addArgument(new Reference('app.decorating_mailer.wooz'))
160160
// ...

setup/web_server_configuration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The **minimum configuration** to get your application running under Apache is:
5050
</Directory>
5151
5252
# uncomment the following lines if you install assets as symlinks
53-
# or run into problems when compiling LESS/Sass/CoffeScript assets
53+
# or run into problems when compiling LESS/Sass/CoffeeScript assets
5454
# <Directory /var/www/project>
5555
# Options FollowSymlinks
5656
# </Directory>
@@ -88,7 +88,7 @@ and increase web server performance:
8888
</Directory>
8989
9090
# uncomment the following lines if you install assets as symlinks
91-
# or run into problems when compiling LESS/Sass/CoffeScript assets
91+
# or run into problems when compiling LESS/Sass/CoffeeScript assets
9292
# <Directory /var/www/project>
9393
# Options FollowSymlinks
9494
# </Directory>
@@ -200,7 +200,7 @@ directive to pass requests for PHP files to PHP FPM:
200200
</Directory>
201201
202202
# uncomment the following lines if you install assets as symlinks
203-
# or run into problems when compiling LESS/Sass/CoffeScript assets
203+
# or run into problems when compiling LESS/Sass/CoffeeScript assets
204204
# <Directory /var/www/project>
205205
# Options FollowSymlinks
206206
# </Directory>
@@ -236,7 +236,7 @@ should look something like this:
236236
</Directory>
237237
238238
# uncomment the following lines if you install assets as symlinks
239-
# or run into problems when compiling LESS/Sass/CoffeScript assets
239+
# or run into problems when compiling LESS/Sass/CoffeeScript assets
240240
# <Directory /var/www/project>
241241
# Options FollowSymlinks
242242
# </Directory>

templating.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ Suppose ``description`` equals ``I <3 this product``:
937937

938938
.. code-block:: twig
939939
940-
<!-- outupt escaping is on automatically -->
940+
<!-- output escaping is on automatically -->
941941
{{ description }} <!-- I &lt3 this product -->
942942
943943
<!-- disable output escaping with the raw filter -->

0 commit comments

Comments
 (0)