@@ -31,17 +31,17 @@ * \param object An object to add */ - (void)addObject: (id)object; /** - * \brief Adds an object to the OFArray at the specified index. + * \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 */ -- (void)addObject: (id)object - atIndex: (size_t)index; +- (void)insertObject: (id)object + atIndex: (size_t)index; /** * \brief Replaces the first object equivalent to the specified object with the * other specified object. *