diff --git a/src/TNL/Containers/Array.h b/src/TNL/Containers/Array.h index 899ca92bbb01d0df6f9fc0aab9a184ed8c44ae5c..867bca6a2b6c66d9bd50eb823dd9280a8c362cca 100644 --- a/src/TNL/Containers/Array.h +++ b/src/TNL/Containers/Array.h @@ -70,10 +70,10 @@ class Array : public Object /** * \brief Copy constructor. * - * Copies \e size elements from existing \e array into a new array. - * \param array Existing array that is about to be copied. - * \param begin Index from which the array is copied. - * \param size Number of array elements that should be copied. + * The constructor does not make a deep copy, but binds to the supplied array. + * \param array Existing array that is to be bound. + * \param begin The first index which should be bound. + * \param size Number of array elements that should be bound. */ Array( Array& array, const IndexType& begin = 0,