...
diff --git a/README.md b/README.md
index f036180..181d54f 100644
--- a/README.md
+++ b/README.md
@@ -122,11 +122,14 @@
// {
// }
-## 5 minute tutorial: Streaming parser, generator
+## 3 minute tutorial: Streaming parser, generator
As convenient as data-binding (to/from POJOs) can be; and as flexible as Tree model can be, there is one more canonical processing model available: incremental (aka "streaming") model.
It is the underlying processing model that data-binding and Tree Model both build upon, but it is also exposed to users who want ultimate performance and/or control over parsing or generation details.
+For in-depth explanation, look at [Jackson Core component](jackson-core).
+But let's look at a simple teaser to whet your appetite:
+
(TO BE COMPLETED)
----