@@ -22,12 +22,12 @@ * @warning Because the list is sorted, all methods inserting an object at a * specific place are unavailable, even though they exist in OFList! */ @interface OFSortedList: OFList /*! - * @brief Adds the object to the list while keeping the list sorted. + * @brief Inserts the object to the list while keeping the list sorted. * - * @param object The object to add + * @param object The object to insert * @return The list object for the object just added */ -- (of_list_object_t*)addObject: (id )object; +- (of_list_object_t*)insertObject: (id )object; @end