diff --git a/_build/maintainer_guide.rst b/_build/maintainer_guide.rst index 9758b4e7397..8f7af409999 100644 --- a/_build/maintainer_guide.rst +++ b/_build/maintainer_guide.rst @@ -1,4 +1,4 @@ -Symfony Docs Maintainer Guide +ASymfony Docs Maintainer Guide ============================= The `symfony/symfony-docs`_ repository stores the Symfony project documentation diff --git a/reference/constraints/PasswordStrength.rst b/reference/constraints/PasswordStrength.rst index 10a19b342d6..ddc3fd18043 100644 --- a/reference/constraints/PasswordStrength.rst +++ b/reference/constraints/PasswordStrength.rst @@ -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. diff --git a/security/access_control.rst b/security/access_control.rst index abba217702f..ebf2227b42c 100644 --- a/security/access_control.rst +++ b/security/access_control.rst @@ -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']) diff --git a/service_container/autowiring.rst b/service_container/autowiring.rst index daa1e96328b..96b78ab39e2 100644 --- a/service_container/autowiring.rst +++ b/service_container/autowiring.rst @@ -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::