Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp A. Hartmann <pah@qo.cx>2014-11-17 15:26:49 +0300
committerPhilipp A. Hartmann <pah@qo.cx>2014-11-17 15:26:49 +0300
commitc35bbe54d9f34f6b054f664243492731e32224aa (patch)
tree534f0125ac0fd523e1600389f3d807abe95717ad /include
parent8acaaa757c0270196b3d88324bf2b6706caeb187 (diff)
Writer: fix documentation of stackAllocator param (closes #196)
Diffstat (limited to 'include')
-rw-r--r--include/rapidjson/writer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rapidjson/writer.h b/include/rapidjson/writer.h
index fdade6e4..dc41a1b1 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) :