From 2f1e59324f22ad5257d9e8d53a4613ca19978a39 Mon Sep 17 00:00:00 2001 From: Kevin Atkinson Date: Mon, 22 Feb 2016 00:53:58 -0500 Subject: [PATCH] Documentation fix. GenericObject is a helper class for accessing Value of _object_ type. --- include/rapidjson/document.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/rapidjson/document.h b/include/rapidjson/document.h index 423c543..be09be4 100644 --- a/include/rapidjson/document.h +++ b/include/rapidjson/document.h @@ -2462,9 +2462,9 @@ private: ValueType& value_; }; -//! Helper class for accessing Value of array type. +//! Helper class for accessing Value of object type. /*! - Instance of this helper class is obtained by \c GenericValue::GetArray(). + Instance of this helper class is obtained by \c GenericValue::GetObject(). In addition to all APIs for array type, it provides range-based for loop if \c RAPIDJSON_HAS_CXX11_RANGE_FOR=1. */ template