Skip to content

Fix several typos #11646

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
Jun 3, 2019
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 cache.rst
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ Clearing the Cache
------------------

To clear the cache you can use the ``bin/console cache:pool:clear [pool]`` command.
That will remove all the entries from your storage and you wil have to recalculate
That will remove all the entries from your storage and you will have to recalculate
all values. You can also group your pools into "cache clearers". There are 3 cache
clearers by default:

Expand Down
2 changes: 1 addition & 1 deletion components/var_dumper/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ method to use a light theme::

The :class:`Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper` limits string
length and nesting depth of the output to make it more readable. These options
can be overriden by the third optional parameter of the
can be overridden by the third optional parameter of the
:method:`dump(Data $data) <Symfony\\Component\\VarDumper\\Dumper\\DataDumperInterface::dump>`
method::

Expand Down
2 changes: 1 addition & 1 deletion components/workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Usage
-----

When you have configured a ``Registry`` with your workflows,
you can retreive a workflow from it and use it as follows::
you can retrieve a workflow from it and use it as follows::

// ...
// Consider that $post is in state "draft" by default
Expand Down
2 changes: 1 addition & 1 deletion configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ The ``.env`` file is special, because it defines the values that usually change
on each server. For example, the database credentials on your local development
machine might be different from your workmates. The ``.env`` file should contain
sensible, non-secret *default* values for all of your environment variables and
*should* be commited to your repository.
*should* be committed to your repository.

To override these variables with machine-specific or sensitive values, create a
``.env.local`` file. This file is **not committed to the shared repository** and
Expand Down
2 changes: 1 addition & 1 deletion configuration/dot-env-changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ important changes:
* A) The ``.env.dist`` file no longer exists. Its contents should be moved to your
``.env`` file (see the next point).

* B) The ``.env`` file **is** now commited to your repository. It was previously ignored
* B) The ``.env`` file **is** now committed to your repository. It was previously ignored
via the ``.gitignore`` file (the updated recipe does not ignore this file). Because
this file is committed, it should contain non-sensitive, default values. Basically,
the ``.env.dist`` file was moved to ``.env``.
Expand Down
2 changes: 1 addition & 1 deletion mailer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ Twig: HTML & CSS

The Mime component integrates with the :doc:`Twig template engine </templating>`
to provide advanced features such as CSS style inlining and support for HTML/CSS
frameworks to create complex HTML email messages. First, make sure Twig is instaled:
frameworks to create complex HTML email messages. First, make sure Twig is installed:

.. code-block:: terminal

Expand Down
2 changes: 1 addition & 1 deletion reference/forms/types/hidden.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The hidden type represents a hidden input field.
+-------------+----------------------------------------------------------------------+
| Rendered as | ``input`` ``hidden`` field |
+-------------+----------------------------------------------------------------------+
| Overriden | - `compound`_ |
| Overridden | - `compound`_ |
| options | - `error_bubbling`_ |
| | - `required`_ |
+-------------+----------------------------------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion testing/profiling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ provided by the collectors obtained through the ``$client->getProfile()`` call::

If a test fails because of profiling data (too many DB queries for instance),
you might want to use the Web Profiler to analyze the request after the tests
finish. It can be achived by embedding the token in the error message::
finish. It can be achieved by embedding the token in the error message::

$this->assertLessThan(
30,
Expand Down