Skip to content

Fix: Typos #19078

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 24, 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 _build/maintainer_guide.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Symfony Docs Maintainer Guide
ASymfony Docs Maintainer Guide
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ups, fixed in extra commit

=============================

The `symfony/symfony-docs`_ repository stores the Symfony project documentation
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