Documentation fix.

GenericObject is a helper class for accessing Value of _object_ type.
This commit is contained in:
Kevin Atkinson 2016-02-22 00:53:58 -05:00
parent 494f9deb9b
commit 2f1e59324f

View File

@ -2462,9 +2462,9 @@ private:
ValueType& value_; 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. In addition to all APIs for array type, it provides range-based for loop if \c RAPIDJSON_HAS_CXX11_RANGE_FOR=1.
*/ */
template <bool Const, typename ValueT> template <bool Const, typename ValueT>