@@ -187,28 +187,28 @@ * @brief All items of the OFMutableData as a C array. * * @warning The pointer is only valid until the OFMutableData is changed! * * Modifying the returned array directly is allowed and will change the contents - * of the data array. + * of the data. */ @property (readonly, nonatomic) void *items OF_RETURNS_INNER_POINTER; /*! * @brief The first item of the OFMutableData or `NULL`. * * Modifying the returned item directly is allowed and will change the contents - * of the data array. + * of the data. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) void *firstItem OF_RETURNS_INNER_POINTER; /*! * @brief Last item of the OFMutableData or `NULL`. * * Modifying the returned item directly is allowed and will change the contents - * of the data array. + * of the data. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) void *lastItem OF_RETURNS_INNER_POINTER; #else - (void *)items; @@ -218,14 +218,14 @@ /*! * @brief Returns a specific item of the OFMutableData. * * Modifying the returned item directly is allowed and will change the contents - * of the data array. + * of the data. * * @param index The number of the item to return * @return The specified item of the OFMutableData */ - (void *)itemAtIndex: (size_t)index OF_RETURNS_INNER_POINTER; @end OF_ASSUME_NONNULL_END