Skip to content

Commit cb6e7a8

Browse files
committed
minor #15068 [Uid] Fix typos (samnela)
This PR was merged into the 5.2 branch. Discussion ---------- [Uid] Fix typos <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `5.x` for features of unreleased versions). --> Commits ------- b5adc53 [Uid] Fix typos
2 parents 1c16736 + b5adc53 commit cb6e7a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/uid.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ of the UUID parameters::
186186
{
187187
$qb = $this->createQueryBuilder('p')
188188
// ...
189-
// add 'uuid' as the third argument to tell Doctrine that this is an UUID
189+
// add 'uuid' as the third argument to tell Doctrine that this is a UUID
190190
->setParameter('user', $user->getUuid(), 'uuid')
191191

192192
// alternatively, you can convert it to a value compatible with
@@ -333,7 +333,7 @@ of the ULID parameters::
333333
{
334334
$qb = $this->createQueryBuilder('p')
335335
// ...
336-
// add 'ulid' as the third argument to tell Doctrine that this is an ULID
336+
// add 'ulid' as the third argument to tell Doctrine that this is a ULID
337337
->setParameter('user', $user->getUlid(), 'ulid')
338338

339339
// alternatively, you can convert it to a value compatible with

0 commit comments

Comments
 (0)