@@ -24,21 +24,21 @@ * \brief An abstract class for storing, adding and removing objects in anr * array. */ @interface OFMutableArray: OFArray /** - * \brief Adds an object to the OFArray. + * \brief Adds an object to the end of the array. * * \param object An object to add */ - (void)addObject: (id)object; /** * \brief Inserts an object to the OFArray at the specified index. * * \param object An object to add - * \param index The index where the object should be added + * \param index The index where the object should be inserted */ - (void)insertObject: (id)object atIndex: (size_t)index; /**