aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorArtem Prigoda <arteamon@gmail.com>2014-11-20 18:14:20 +0300
committerArtem Prigoda <arteamon@gmail.com>2014-11-20 18:14:20 +0300
commitae3f7b3f31e22e8d1d7c2de78ba697386f573059 (patch)
treeb14062e69fcb22a7288bdd9c7bfc4af3e2276138 /README.md
parent6870021b9433496004a3a5dd7772af0c7f93b9ca (diff)
downloadjackson-databind-ae3f7b3f31e22e8d1d7c2de78ba697386f573059.tar.gz
Fix an example of Tree model JSON output
Should be a right curly bracket, not a left one
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 35e439f82..d72b95e56 100644
--- a/README.md
+++ b/README.md
@@ -144,7 +144,7 @@ String json = mapper.writeValueAsString(root);
// "name" : "Bob", "age" : 13,
// "other" : {
// "type" : "student"
-// {
+// }
// }
```