Skip to content

Commit 29c6a9b

Browse files
committed
Fixed ReST syntax
1 parent 040839a commit 29c6a9b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Since version 0.4.0, two implementations of the parser are available:
4242
* ``v1``: the *classic* implementation of ``javaobj``, with a work in progress
4343
implementation of a writer.
4444
* ``v2``: the *new* implementation, which is a port of the Java project
45-
[``jdeserialize``](https://github.com/frohoff/jdeserialize/),
45+
`jdeserialize <https://github.com/frohoff/jdeserialize/>`_,
4646
with support of the object transformer (with a new API) and of the ``numpy``
4747
arrays loading.
4848

@@ -79,7 +79,7 @@ Requirements
7979
============
8080

8181
* Python >= 2.7 or Python >= 3.4
82-
* `enum34` and `typing` when using Python <= 3.4 (installable with `pip`)
82+
* ``enum34`` and ``typing`` when using Python <= 3.4 (installable with ``pip``)
8383
* Maven 2+ (for building test data of serialized objects.
8484
You can skip it if you do not plan to run ``tests.py``)
8585

@@ -164,9 +164,10 @@ The Java object instance parsing works in two main steps:
164164
1. The transformer is called to create an instance of a bean that inherits
165165
``JavaInstance``.
166166
2. The latter bean is then called:
167-
* When the object is written with a custom block data
168-
* After the fields and annotations have been parsed, to update the content of
169-
the Python bean.
167+
168+
* When the object is written with a custom block data
169+
* After the fields and annotations have been parsed, to update the content of
170+
the Python bean.
170171

171172
Here is an example for a Java ``HashMap`` object. You can look at the code of
172173
the ``javaobj.v2.transformer`` module to see the whole implementation.

0 commit comments

Comments
 (0)