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

[Documentation] Quick typo fix #8796

Merged
merged 1 commit into from
Oct 9, 2017
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
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ All shipping cost calculators implement ``CalculatorInterface``. In our example

Now, you need to register your new service in container and tag it with ``sylius.shipping_calculator``.

.. code-block:: yml
.. code-block:: yaml

services:
app.shipping_calculator.dhl:
Expand Down Expand Up @@ -132,7 +132,7 @@ First step is to create a form type which will be displayed if our calculator is

We also need to register the form type in the container and set this form type in the definition of the calculator.

.. code-block:: yml
.. code-block:: yaml

services:
app.shipping_calculator.dhl:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ All tax calculators implement the ``CalculatorInterface``. In our example we'll

Now, you need to register your new service in container and tag it with ``sylius.shipping_calculator``.

.. code-block:: yml
.. code-block:: yaml

services:
app.tax_calculator.fee:
Expand Down