8000 minor #49239 Fix some typos (javiereguiluz) · symfony/symfony@26d0014 · GitHub
[go: up one dir, main page]

Skip to content

Commit 26d0014

Browse files
minor #49239 Fix some typos (javiereguiluz)
This PR was merged into the 5.4 branch. Discussion ---------- Fix some typos | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - Commits ------- bb62f17 Fix some typos
2 parents 5f8c7eb + bb62f17 commit 26d0014

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Symfony/Component/Cache/Traits/AbstractAdapterTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public function saveDeferred(CacheItemInterface $item)
297297
* When versioning is enabled, clearing the cache is atomic and doesn't require listing existing keys to proceed,
298298
* but old keys may need garbage collection and extra round-trips to the back-end are required.
299299 8000
*
300-
* Calling this method also clears the memoized namespace version and thus forces a resynchonization of it.
300+
* Calling this method also clears the memoized namespace version and thus forces a resynchronization of it.
301301
*
302302
* @return bool the previous state of versioning
303303
*/

src/Symfony/Component/Config/Resource/ClassExistenceResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ClassExistenceResource implements SelfCheckingResourceInterface
3232

3333
/**
3434
* @param string $resource The fully-qualified class name
35-
* @param bool|null $exists Boolean when the existency check has already been done
35+
* @param bool|null $exists Boolean when the existence check has already been done
3636
*/
3737
public function __construct(string $resource, bool $exists = null)
3838
{

src/Symfony/Component/HttpFoundation/HeaderUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public static function quote(string $s): string
138138
* Decodes a quoted string.
139139
*
140140
* If passed an unquoted string that matches the "token" construct (as
141-
* defined in the HTTP specification), it is passed through verbatimly.
141+
* defined in the HTTP specification), it is passed through verbatim.
142142
*/
143143
public static function unquote(string $s): string
144144
{

src/Symfony/Component/Messenger/Bridge/Amqp/Transport/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ private function createDelayQueue(int $delay, ?string $routingKey, bool $isRetry
412412
// delete the delay queue 10 seconds after the message expires
413413
// publishing another message redeclares the queue which renews the lease
414414
'x-expires' => $delay + 10000,
415-
// message should be broadcasted to all consumers during delay, but to only one queue during retry
415+
// message should be broadcast to all consumers during delay, but to only one queue during retry
416416
// empty name is default direct exchange
417417
'x-dead-letter-exchange' => $isRetryAttempt ? '' : $this->exchangeOptions['name'],
418418
// after being released from to DLX, make sure the original routing key will be used

0 commit comments

Comments
 (0)
0