Skip to content

Commit 27780a1

Browse files
committed
minor #2745 [docs] fix Doctor RST warning about quotes (smnandre)
This PR was merged into the 2.x branch. Discussion ---------- [docs] fix Doctor RST warning about quotes Commits ------- 2a0a6ec [docs] fix Doctor RST warning about quotes
2 parents d4e7e8e + 2a0a6ec commit 27780a1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/Dropzone/doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ switching the ``@symfony/ux-dropzone/dist/style.min.css`` autoimport to
8585
.. note::
8686

8787
*Note*: you should put the value to ``false`` and not remove the line
88-
so that Symfony Flex wont try to add the line again in the future.
88+
so that Symfony Flex won't try to add the line again in the future.
8989

90-
Once done, the default stylesheet wont be used anymore and you can
90+
Once done, the default stylesheet won't be used anymore and you can
9191
implement your own CSS on top of the Dropzone.
9292

9393
Extend the default behavior

src/LazyImage/doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ replaced by the high-definition version once the page has been rendered:
6161
>
6262

6363
With this setup, the user will initially see ``images/small.png``. Then,
64-
once the page has loaded and the users browser has downloaded the
64+
once the page has loaded and the user's browser has downloaded the
6565
larger image, the ``src`` attribute will change to ``image/large.png``.
6666

6767
There is also support for the ``srcset`` attribute by passing an

src/LiveComponent/doc/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ Actions
10511051

10521052
Live components require a single "default action" that is used to
10531053
re-render it. By default, this is an empty ``__invoke()`` method and can
1054-
be added with the ``DefaultActionTrait``.
1054+
be added with the ``DefaultActionTrait``.
10551055

10561056
Live components __are__ actually Symfony controllers so you can add
10571057
controller attributes (i.e. ``#[IsGranted]``) to either the entire class
@@ -3447,14 +3447,14 @@ stages of a component's lifecycle, you can take advantage of lifecycle hooks.
34473447

34483448
The ``#[PostHydrate]`` hook is called immediately after the component's state
34493449
is loaded from the client. This is useful if you need to process or adjust
3450-
the data once its been hydrated.
3450+
the data once it's been hydrated.
34513451

34523452
``PreDehydrate`` Hook
34533453
~~~~~~~~~~~~~~~~~~~~~
34543454

3455-
The ``#[PreDehydrate]`` hook is triggered just before your components state
3455+
The ``#[PreDehydrate]`` hook is triggered just before your component's state
34563456
is sent back to the client. You can use this to modify or clean up the data
3457-
before its serialized and returned to the client.
3457+
before it's serialized and returned to the client.
34583458

34593459
``PreReRender`` Hook
34603460
~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)