Skip to content

Fix small issues in README.md and Javadoc #48

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

Merged
merged 2 commits into from
Jan 7, 2020
Merged
Changes from 1 commit
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
Next Next commit
Fix small issues in README.md
  • Loading branch information
cstroe committed Dec 22, 2018
commit 0a190914d07543c92e5858df3ca2c1f3af7bae06
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ This implementation obeys the RFC; for this, it uses the numeric equivalence of

### JSON Patch

You have to choices to build a `JsonPatch` instance: use Jackson deserialization, or initialize one
You have two choices to build a `JsonPatch` instance: use Jackson deserialization, or initialize one
directly from a `JsonNode`. Examples:

```
```java
// Using Jackson
final ObjectMapper mapper = new ObjectMapper();
final InputStream in = ...;
Expand Down