doc: add json tokenizer to go1.5.html

Change-Id: I45d92fed757fa1866d5b80e53ed1af6712fa6741
Reviewed-on: https://go-review.googlesource.com/12782
Reviewed-by: Russ Cox <rsc@golang.org>
diff --git a/doc/go1.5.html b/doc/go1.5.html
index 9dc289e..4e173d1 100644
--- a/doc/go1.5.html
+++ b/doc/go1.5.html
@@ -932,6 +932,16 @@
 </li>
 
 <li>
+The <code>encoding/json</code>'s
+<a href="/pkg/encoding/json/#Decoder"><code>Decoder</code></a>
+type has a new method that provides a streaming interface for decoding
+a JSON document:
+<a href="/pkg/encoding/json/#Decoder.Token"><code>Token</code></a>.
+It also interoperates with the existing functionality of <code>Decode</code>,
+which will continue a decode operation already started with <code>Decoder.Token</code>.
+</li>
+
+<li>
 The <a href="/pkg/flag/"><code>flag</code></a> package
 has a new function, <a href="/pkg/flag/#UnquoteUsage"><code>UnquoteUsage</code></a>,
 to assist in the creation of usage messages using the new convention