Skip to content

Commit 55197b8

Browse files
committed
minor #19078 Fix: Typos (OskarStark)
This PR was merged into the 6.3 branch. Discussion ---------- Fix: Typos Follows * #19077 Commits ------- 69abdfa Fix: Typos
2 parents 2df8233 + 69abdfa commit 55197b8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

_build/maintainer_guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Symfony Docs Maintainer Guide
1+
ASymfony Docs Maintainer Guide
22
=============================
33

44
The `symfony/symfony-docs`_ repository stores the Symfony project documentation

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::

0 commit comments

Comments
 (0)