Skip to content

Commit

Permalink
Fixed doc typos re: @jsonb(De)Serializer
Browse files Browse the repository at this point in the history
Closes jakartaee#70

Signed-off-by: Markus KARG <[email protected]>
  • Loading branch information
mkarg committed Aug 21, 2019
1 parent b29bc1e commit 31c9337
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* </p>
*
* <p><b>Usage</b></p>
* <p> The {@code @JsonbDeserializer} annotation can be used with the following
* <p> The {@code @JsonbTypeDeserializer} annotation can be used with the following
* program elements:
* <ul>
* <li> type </li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* <p>Annotation provides way how to set custom JsonbSerializer to field or JavaBean property.</p>
*
* <p><b>Usage</b></p>
* <p>The {@code @JsonbSerializer} annotation can be used with the following program elements:</p>
* <p>The {@code @JsonbTypeSerializer} annotation can be used with the following program elements:</p>
* <ul>
* <li> type </li>
* <li> field </li>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/docs/user-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ Customer customer = new Customer();
customer.setId(1);
customer.setName("Freddie");
// Also configurable with @JsonbSerializer / JsonbDeserializer on properties and class.
// Also configurable with @JsonbTypeSerializer / @JsonbTypeDeSerializer on properties and class.
JsonbConfig config = new JsonbConfig()
.withSerializers(new CustomerSerializer())
.withDeserializers(new CustomerDeserializer());
Expand Down

0 comments on commit 31c9337

Please sign in to comment.