Skip to content

Chore: Fix typo in multiple files #19058

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
Oct 20, 2023
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/console/helpers/progressbar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ When executing longer-running commands, it may be helpful to show progress
information, which updates as your command runs:

.. image:: /_images/components/console/progressbar.gif
:alt: Console output showing a progress bar advance to 100%, with the esimated time left, the memory usage and a special message that changes when the bar closes completion.
:alt: Console output showing a progress bar advance to 100%, with the estimated time left, the memory usage and a special message that changes when the bar closes completion.

.. note::

Expand Down
2 changes: 1 addition & 1 deletion configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ implements :class:`Symfony\\Component\\DependencyInjection\\EnvVarLoaderInterfac
.. note::

If you're using the :ref:`default services.yaml configuration <service-container-services-load-example>`,
the autoconfiguration feature will enable and tag thise service automatically.
the autoconfiguration feature will enable and tag this service automatically.
Otherwise, you need to register and :doc:`tag your service </service_container/tags>`
with the ``container.env_var_loader`` tag.

Expand Down
2 changes: 1 addition & 1 deletion reference/constraints/PasswordStrength.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PasswordStrength
The ``PasswordStrength`` constraint was introduced in Symfony 6.3.

Validates that the given password has reached the minimum strength required by
the constraint. The strengh of the password is not evaluated with a set of
the constraint. The strength of the password is not evaluated with a set of
predefined rules (include a number, use lowercase and uppercase characters,
etc.) but by measuring the entropy of the password based on its length and the
number of unique characters used.
Expand Down
2 changes: 1 addition & 1 deletion security/access_control.rst
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Take the following ``access_control`` entries as an example:
->requestMatcher('App\Security\RequestMatcher\MyRequestMatcher')
;

// require ROLE_ADMIN for 'admin' route. You can use the shortcut route('xxx') mehtod,
// require ROLE_ADMIN for 'admin' route. You can use the shortcut route('xxx') method,
// instead of attributes(['_route' => 'xxx']) method
$security->accessControl()
->roles(['ROLE_ADMIN'])
Expand Down
4 changes: 2 additions & 2 deletions service_container/autowiring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -658,10 +658,10 @@ Generate Closures With Autowiring
---------------------------------

A **service closure** is an anonymous function that returns a service. This type
of instanciation is handy when you are dealing with lazy-loading. It is also
of instantiation is handy when you are dealing with lazy-loading. It is also
useful for non-shared service dependencies.

Automatically creating a closure encapsulating the service instanciation can be
Automatically creating a closure encapsulating the service instantiation can be
done with the
:class:`Symfony\\Component\\DependencyInjection\\Attribute\\AutowireServiceClosure`
attribute::
Expand Down
2 changes: 1 addition & 1 deletion validation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ properties even if the child properties override those constraints**. Symfony
will always merge the parent constraints for each property.

You can't change this behavior, but you can overcome it by defining the parent
and the child contraints in different :doc:`validation groups </validation/groups>`
and the child constraints in different :doc:`validation groups </validation/groups>`
and then select the appropriate group when validating each object.

Debugging the Constraints
Expand Down