8000 [docs] fix Doctor RST warning about quotes by smnandre · Pull Request #2745 · symfony/ux · GitHub
[go: up one dir, main page]

Skip to content

[docs] fix Doctor RST warning about quotes #2745

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[docs] fix Doctor RST warning about quotes
  • Loading branch information
smnandre committed May 16, 2025
commit 2a0a6ece52682c09b9c293a3870a299e20fb9180
4 changes: 2 additions & 2 deletions src/Dropzone/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ switching the ``@symfony/ux-dropzone/dist/style.min.css`` autoimport to
.. note::

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

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

Extend the default behavior
Expand Down
2 changes: 1 addition & 1 deletion src/LazyImage/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ replaced by the high-definition version once the page has been rendered:
>

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

There is also support for the ``srcset`` attribute by passing an
Expand Down
8 changes: 4 additions & 4 deletions src/LiveComponent/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ Actions

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

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

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

``PreDehydrate`` Hook
~~~~~~~~~~~~~~~~~~~~~

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

``PreReRender`` Hook
~~~~~~~~~~~~~~~~~~~~
Expand Down
0