Skip to content

Commit

Permalink
fixed issues caused by RST conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
driehle committed Oct 18, 2021
1 parent 4cb0a56 commit 6a20afc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/en/authentication.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Here are some explanations about the keys:
``Doctrine\Persistence\ObjectManager`` or a single string that will
fetched from the Service Manager in order to get a concrete instance.
If you are using DoctrineORMModule, you can simply write
‘Doctrine:raw-latex:`\ORM`:raw-latex:`\EntityManager` (as the
``Doctrine\ORM\EntityManager`` (as the
EntityManager implements the class
``Doctrine\Persistence\ObjectManager``).
- the ``identity_class`` contains the FQCN of the entity that will be
Expand Down
4 changes: 2 additions & 2 deletions docs/en/caching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Caching
=======

DoctrineModule provides bridging between
```Laminas\Cache`` <https://github.com/laminas/laminas-cache>`__ and
```Doctrine\Common\Cache`` <https://github.com/doctrine/common/tree/master/lib/Doctrine/Common/Cache>`__.
`Laminas\Cache <https://github.com/laminas/laminas-cache>`__ and
`Doctrine\Common\Cache <https://github.com/doctrine/common/tree/master/lib/Doctrine/Common/Cache>`__.
This may be useful in case you want to share configured cache instances
across doctrine, symfony and laminas projects.

Expand Down
2 changes: 1 addition & 1 deletion docs/en/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DoctrineModule
DoctrineModule provides a bridge between Laminas and Doctrine 2. It
gives you access to features that can be used across Doctrine 2 ORM as
well as Doctrine 2 ODM. It provides an abstraction layer on top of
```Doctrine\Common`` <https://github.com/doctrine/common>`__ which
`Doctrine\Common <https://github.com/doctrine/common>`__ which
allows the end user to build functionality being completely unaware if
he’s currently working with Doctrine ORM or Doctrine MongoDB ODM.

Expand Down
2 changes: 1 addition & 1 deletion docs/en/validator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ For the ``use_context`` option and other specifics to
``getRepository`` function of any valid object manager instance,
passing it the FQCN of the class. For instance, in the context of
Doctrine 2 ORM, here is how you get the ``object_repository`` of the
‘Application:raw-latex:`\Entity`:raw-latex:`\User` entity:
``Application\Entity\User`` entity:

.. code:: php
Expand Down

0 comments on commit 6a20afc

Please sign in to comment.