Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed doc typos re: @Jsonb(De)Serializer #183

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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