Skip to content

Commit 555a81c

Browse files
committed
[docs] fix Doctor RST warning about quotes
1 parent 443fabc commit 555a81c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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)