Skip to content

Commit 7f66862

Browse files
authored
Update README.md
1 parent 9a6a360 commit 7f66862

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# [Avaje-JsonB](https://avaje.io/jsonb/)
66

7-
Fast, reflection-free Json binding via apt source code generation. A light (~188kb size + generated code) source code generation style alternative to Jacksons ObjectMapper, Gson (code generation vs reflection)
7+
Fast, reflection-free Json binding via apt source code generation. A light (~188kb + generated code) source code generation style alternative to Jacksons ObjectMapper, Gson (code generation vs reflection)
88

99
- Annotate java classes with `@Json` (or use `@Json.Import` for types we "don't own" or can't annotate)
1010
- `avaje-jsonb-generator` annotation processor generates java source code to convert to/from json
@@ -84,8 +84,8 @@ public class Address {
8484
private String street;
8585
private String suburb;
8686
private String city;
87-
// object fields will automatically have adapters generated
88-
// no @Json required, (though you can add @Json anyway to modify the adapters how you wish)
87+
// object fields will automatically have adapters generated, no @Json required
88+
// (though you can add @Json anyway to modify the generated adapter how you wish)
8989
private OtherClass;
9090

9191
//add getters/setters

0 commit comments

Comments
 (0)