Skip to content

Commit c176633

Browse files
committed
Merge branch '7.3' into 7.4
* 7.3: Fix “construtor” typos across docs (constructor) Fix typo in encoders.rst (Serveral → Several)
2 parents d8928a2 + f9c60f4 commit c176633

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

html_sanitizer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ service. Now you have two ways of injecting it in any service or controller:
222222

223223
**(1) Use a specific argument name**
224224

225-
Type-hint your construtor/method argument with ``HtmlSanitizerInterface`` and name
225+
Type-hint your constructor/method argument with ``HtmlSanitizerInterface`` and name
226226
the argument using this pattern: "HTML sanitizer name in camelCase". For example, to
227227
inject the ``app.post_sanitizer`` defined earlier, use an argument named ``$appPostSanitizer``::
228228

lock.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ them in any service or controller:
300300

301301
**(1) Use a specific argument name**
302302

303-
Type-hint your construtor/method argument with ``LockFactory`` and name the
303+
Type-hint your constructor/method argument with ``LockFactory`` and name the
304304
argument using this pattern: "lock name in camelCase" + ``LockFactory`` suffix.
305305
For example, to inject the ``invoice`` package defined earlier::
306306

rate_limiter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ them in any service or controller:
238238

239239
**(1) Use a specific argument name**
240240

241-
Type-hint your construtor/method argument with ``RateLimiterFactoryInterface`` and name
241+
Type-hint your constructor/method argument with ``RateLimiterFactoryInterface`` and name
242242
the argument using this pattern: "rate limiter name in camelCase" + ``Limiter`` suffix.
243243
For example, to inject the ``anonymous_api`` limiter defined earlier, use an
244244
argument named ``$anonymousApiLimiter``::

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ them in any service or controller:
282282

283283
**(1) Use a specific argument name**
284284

285-
Type-hint your construtor/method argument with ``PackageInterface`` and name
285+
Type-hint your constructor/method argument with ``PackageInterface`` and name
286286
the argument using this pattern: "asset package name in camelCase". For example,
287287
to inject the ``foo_package`` package defined earlier::
288288

serializer/encoders.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ All context options available for the JSON encoder are:
5555
The ``CsvEncoder``
5656
------------------
5757

58-
The ``CsvEncoder`` encodes to and decodes from CSV. Serveral :ref:`context options <serializer-context>`
58+
The ``CsvEncoder`` encodes to and decodes from CSV. Several :ref:`context options <serializer-context>`
5959
are available to customize the behavior of the encoder:
6060

6161
``csv_delimiter`` (default: ``,``)

workflow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ injecting each workflow in any service or controller:
545545

546546
**(1) Use a specific argument name**
547547

548-
Type-hint your construtor/method argument with ``WorkflowInterface`` and name the
548+
Type-hint your constructor/method argument with ``WorkflowInterface`` and name the
549549
argument using this pattern: "workflow name in camelCase" + ``Workflow`` suffix.
550550
If it is a state machine type, use the ``StateMachine`` suffix.
551551

0 commit comments

Comments
 (0)