Skip to content

Commit b3072b8

Browse files
committed
minor #21521 Fix “construtor” typos across docs (no style changes) (alisolphp)
This PR was merged into the 6.4 branch. Discussion ---------- Fix “construtor” typos across docs (no style changes) This PR fixes all occurrences of “construtor” → “constructor”. Token-only changes; no style/wording/formatting edits. - html_sanitizer.rst - lock.rst - rate_limiter.rst - reference/configuration/framework.rst - workflow.rst Commits ------- 06494a8 Fix “construtor” typos across docs (constructor)
2 parents 7b1ce67 + 06494a8 commit b3072b8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

html_sanitizer.rst

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

220220
**(1) Use a specific argument name**
221221

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

lock.rst

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

290290
**(1) Use a specific argument name**
291291

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

rate_limiter.rst

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

228228
**(1) Use a specific argument name**
229229

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

reference/configuration/framework.rst

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

25552555
**(1) Use a specific argument name**
25562556

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

workflow.rst

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

333333
**(1) Use a specific argument name**
334334

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

0 commit comments

Comments
 (0)