From c35bbe54d9f34f6b054f664243492731e32224aa Mon Sep 17 00:00:00 2001 From: "Philipp A. Hartmann" Date: Mon, 17 Nov 2014 13:26:49 +0100 Subject: [PATCH] Writer: fix documentation of stackAllocator param (closes #196) --- include/rapidjson/writer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rapidjson/writer.h b/include/rapidjson/writer.h index fdade6e..dc41a1b 100644 --- a/include/rapidjson/writer.h +++ b/include/rapidjson/writer.h @@ -59,7 +59,7 @@ public: //! Constructor /*! \param os Output stream. - \param allocator User supplied allocator. If it is null, it will create a private one. + \param stackAllocator User supplied allocator. If it is null, it will create a private one. \param levelDepth Initial capacity of stack. */ Writer(OutputStream& os, StackAllocator* stackAllocator = 0, size_t levelDepth = kDefaultLevelDepth) :