Skip to content
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

[docs] typofixes #13162

Merged
merged 2 commits into from
Oct 4, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
[docs] typofixes
  • Loading branch information
nexxai authored and CoderMaggie committed Oct 4, 2021
commit 80132ffa9bf74cdb923cd3feed2d2d1c50b53833
2 changes: 1 addition & 1 deletion docs/bdd/how-to-use-transformers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ used in the same step definition. Is it all? No! The following example will also
// some logic here
}

It is worth to mention, that in such a case, transformer would be matched depending on a name after ':' sign. So many transformes could be used when using this signature also.
It is worth to mention, that in such a case, transformer would be matched depending on a name after ':' sign. So many transformers could be used when using this signature also.
This style gives an opportunity to write simple steps with transformers, without any regex, which would boost context readability.

.. note::
Expand Down
2 changes: 1 addition & 1 deletion docs/book/architecture/emails.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ You have the following parameters available:
Contact Request
---------------

This e-mail is sent when a customer validades contact form.
This e-mail is sent when a customer validates contact form.

**Code**: ``contact_request``

Expand Down
2 changes: 1 addition & 1 deletion docs/book/orders/returns.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Overwrite the ``ReturnRequestResolutionsProvider`` service:

In order to **add a custom Resolution**:

Overwritthe ``ReturnRequestResolutionsProvider`` service and add a translation of the new resolution:
Overwrite the ``ReturnRequestResolutionsProvider`` service and add a translation of the new resolution:

.. code-block:: yaml

Expand Down
4 changes: 2 additions & 2 deletions docs/book/themes/themes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ In order to customize the login view you should take the content of ``@SyliusSho

* Before theme-bundle v2,
paste it to your theme directory: ``themes/CrimsonTheme/SyliusShopBundle/views/login.html.twig``
(There are more informations in the official documentation about `theme structure v1.5.1 <https://github.com/Sylius/SyliusThemeBundle/blob/v1.5.1/docs/your_first_theme.md#theme-structure>`_)
(There is more information in the official documentation about `theme structure v1.5.1 <https://github.com/Sylius/SyliusThemeBundle/blob/v1.5.1/docs/your_first_theme.md#theme-structure>`_)


* From `theme-bundle v2 <https://github.com/Sylius/SyliusThemeBundle/releases/tag/v2.0.0>`_,
paste it to your theme directory: ``themes/CrimsonTheme/templates/bundles/SyliusShopBundle/login.html.twig``
(There are more informations in the official documentation about `theme structure v2.0.0 <https://github.com/Sylius/SyliusThemeBundle/blob/v2.0.0/docs/your_first_theme.md#theme-structure>`_)
(There is more information in the official documentation about `theme structure v2.0.0 <https://github.com/Sylius/SyliusThemeBundle/blob/v2.0.0/docs/your_first_theme.md#theme-structure>`_)

Let's remove the registration column in this example:

Expand Down
4 changes: 2 additions & 2 deletions docs/customization/model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Apply the following changes to the ``src/Entity/Addressing/Country.php`` file th

Under the ``sylius_*`` where ``*`` is the name of the bundle of the model you are customizing, in our case it will be the ``SyliusAddressingBundle`` -> ``sylius_addressing``.

That in Sylius-Standard configuration is overriden already.
That in Sylius-Standard configuration is overridden already.

.. code-block:: yaml

Expand Down Expand Up @@ -227,7 +227,7 @@ Apply the following changes to the ``src/Entity/Shipping/ShippingMethod.php`` fi
Under the ``sylius_*`` where ``*`` is the name of the bundle of the model you are customizing,
in our case it will be the ``SyliusShippingBundle`` -> ``sylius_shipping``.

That in Sylius-Standard configuration is overriden already, but you may check if it correctly overriden.
That in Sylius-Standard configuration is overridden already, but you may check if it correctly overridden.

.. code-block:: yaml

Expand Down