Port documentation fix from #407

This commit is contained in:
Milo Yip 2015-08-13 10:16:19 +08:00
parent 3517aca39a
commit 3cf7228f46

View File

@ -320,7 +320,7 @@ std::stringstream ss(json);
IStreamWrapper is(ss); IStreamWrapper is(ss);
Document d; 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. Note that, this implementation may not be as efficient as RapidJSON's memory or file streams, due to internal overheads of the standard library.