From 11d31aaa7be700e50f97819aa887310460e38484 Mon Sep 17 00:00:00 2001 From: "Philipp A. Hartmann" Date: Wed, 30 Jul 2014 23:57:31 +0200 Subject: [PATCH] fix typo --- include/rapidjson/document.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rapidjson/document.h b/include/rapidjson/document.h index 16167ff..f1fa850 100644 --- a/include/rapidjson/document.h +++ b/include/rapidjson/document.h @@ -967,7 +967,7 @@ int z = a[0u].GetInt(); // This works too. return (*this).template PushBack(value, allocator); } - //! Append a primitive value at the end of the array(.) + //! Append a primitive value at the end of the array. /*! \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t \param value Value of primitive type T to be appended. \param allocator Allocator for reallocating memory. It must be the same one as used before. Commonly use GenericDocument::GetAllocator().