Skip to content

Commit c35c6f6

Browse files
committed
Fix some spelling/grammar and formatting issues
1 parent 5d08125 commit c35c6f6

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

README.markdown

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@ RWX XML-RPC Object-Binding API
44
RWX is a set of APIs for dealing with XML-RPC interactions in Java. It offers
55
an annotation-based object-binding API for Java objects.
66

7-
It uses Java Annotation Processor API to generate parser / renderer Java source files
8-
according to RWX annotations. The top level RWXMapper uses those generated classes under the hook.
7+
It uses Java Annotation Processor API to generate parser/renderer Java source files
8+
according to RWX annotations. The top-level `RWXMapper` uses those generated classes under the hood.
99

10-
You will need 4 steps to use RWX:
10+
You will need four steps to use RWX:
1111

1212
1. Create model classes according to your XML-RPC req/response format.
13-
2. Annotate model classes by RWX annotations.
14-
3. Generate sources form annotated classes (an pom example is provided in rwx-test module)
15-
4. Call RWXMapper.render/parse methods to convert between XML-RPC req/resp strings and java objects.
13+
2. Annotate model classes with RWX annotations.
14+
3. Generate sources from annotated classes (an example POM is provided in the `rwx-test` module).
15+
4. Call `RWXMapper.render`/`parse` methods to convert between XML-RPC req/resp strings and Java objects.
1616

17-
The first two steps could be simplified by binding a field to java.lang.Object if you
18-
do not know the exact Java type. In such cases, RWX will bind a List/Map based data structure to the field and you
17+
The first two steps can be simplified by binding a field to `java.lang.Object` if you
18+
do not know the exact Java type. In such cases, RWX will bind a `List`/`Map` based data structure to the field and you
1919
can always interpret it in your program.
20-

0 commit comments

Comments
 (0)