Skip to content

Commit

Permalink
Make code blocks consistent (#10103)
Browse files Browse the repository at this point in the history
  • Loading branch information
pierredup committed Oct 10, 2022
1 parent 1ed0057 commit 06c77ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/en/tutorials/embeddables.rst
Expand Up @@ -151,6 +151,12 @@ directly, set ``columnPrefix=false`` (``use-column-prefix="false"`` for XML):
private $address;
}
.. code-block:: xml
<entity name="User">
<embedded name="address" class="Address" use-column-prefix="false" />
</entity>
.. code-block:: yaml
User:
Expand All @@ -160,12 +166,6 @@ directly, set ``columnPrefix=false`` (``use-column-prefix="false"`` for XML):
class: Address
columnPrefix: false
.. code-block:: xml
<entity name="User">
<embedded name="address" class="Address" use-column-prefix="false" />
</entity>
DQL
---
Expand Down

0 comments on commit 06c77ce

Please sign in to comment.