From 3cf7228f4670d9ea3a283bf316c9be5abefa1777 Mon Sep 17 00:00:00 2001 From: Milo Yip Date: Thu, 13 Aug 2015 10:16:19 +0800 Subject: [PATCH] Port documentation fix from #407 --- doc/stream.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/stream.md b/doc/stream.md index 94bc10d..7b3c5ca 100644 --- a/doc/stream.md +++ b/doc/stream.md @@ -320,7 +320,7 @@ std::stringstream ss(json); IStreamWrapper is(ss); Document d; -d.Parse(is); +d.ParseStream(is); ~~~~~~~~~~ Note that, this implementation may not be as efficient as RapidJSON's memory or file streams, due to internal overheads of the standard library.