From ffd389befc3d828effcb7b72979546a3f5cd6a26 Mon Sep 17 00:00:00 2001 From: "Force.Charlie-I" Date: Wed, 12 Aug 2015 18:38:13 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E6=B5=81=E5=BA=94?= =?UTF-8?q?=E5=BD=93=E4=BD=BF=E7=94=A8=20ParseStream=20=E8=80=8C=E4=B8=8D?= =?UTF-8?q?=E6=98=AF=20Parse?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/stream.zh-cn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/stream.zh-cn.md b/doc/stream.zh-cn.md index 5ac32f8..0f930a9 100644 --- a/doc/stream.zh-cn.md +++ b/doc/stream.zh-cn.md @@ -320,7 +320,7 @@ std::stringstream ss(json); IStreamWrapper is(ss); Document d; -d.Parse(is); +d.ParseStream(is); ~~~~~~~~~~ 但要注意,由于标准库的内部开销问,此实现的性能可能不如RapidJSON的内存/文件流。