Skip to content

Commit 9901e18

Browse files
committed
minor #19058 Chore: Fix typo in multiple files (thapasusheel)
This PR was merged into the 6.4 branch. Discussion ---------- Chore: Fix typo in multiple files <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `6.x` for features of unreleased versions). --> This PR fix the typo seen in various files ```pseudo esimated >estimated strengh > strength mehtod > method contraints > constraints instanciation > instantiation ``` Commits ------- 6de47c5 Chore: Fix typo in multiple files
2 parents 9831a44 + 6de47c5 commit 9901e18

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

components/console/helpers/progressbar.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ When executing longer-running commands, it may be helpful to show progress
55
information, which updates as your command runs:
66

77
.. image:: /_images/components/console/progressbar.gif
8-
: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.
8+
: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.
99

1010
.. note::
1111

configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ implements :class:`Symfony\\Component\\DependencyInjection\\EnvVarLoaderInterfac
10191019
.. note::
10201020

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

reference/constraints/PasswordStrength.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PasswordStrength
66
The ``PasswordStrength`` constraint was introduced in Symfony 6.3.
77

88
Validates that the given password has reached the minimum strength required by
9-
the constraint. The strengh of the password is not evaluated with a set of
9+
the constraint. The strength of the password is not evaluated with a set of
1010
predefined rules (include a number, use lowercase and uppercase characters,
1111
etc.) but by measuring the entropy of the password based on its length and the
1212
number of unique characters used.

security/access_control.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Take the following ``access_control`` entries as an example:
161161
->requestMatcher('App\Security\RequestMatcher\MyRequestMatcher')
162162
;
163163
164-
// require ROLE_ADMIN for 'admin' route. You can use the shortcut route('xxx') mehtod,
164+
// require ROLE_ADMIN for 'admin' route. You can use the shortcut route('xxx') method,
165165
// instead of attributes(['_route' => 'xxx']) method
166166
$security->accessControl()
167167
->roles(['ROLE_ADMIN'])

service_container/autowiring.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -658,10 +658,10 @@ Generate Closures With Autowiring
658658
---------------------------------
659659

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

664-
Automatically creating a closure encapsulating the service instanciation can be
664+
Automatically creating a closure encapsulating the service instantiation can be
665665
done with the
666666
:class:`Symfony\\Component\\DependencyInjection\\Attribute\\AutowireServiceClosure`
667667
attribute::

validation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ properties even if the child properties override those constraints**. Symfony
649649
will always merge the parent constraints for each property.
650650

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

655655
Debugging the Constraints

0 commit comments

Comments
 (0)