@@ -82,11 +82,11 @@ /*! * @brief Creates a new OFArray with the objects from the specified C array of * the specified length. * * @param objects A C array of objects - * @param length The length of the C array + * @param count The length of the C array * @return A new autoreleased OFArray */ + (instancetype)arrayWithObjects: (id const*)objects count: (size_t)count; @@ -127,11 +127,11 @@ /*! * @brief Initializes an OFArray with the objects from the specified C array of * the specified length. * * @param objects A C array of objects - * @param length The length of the C array + * @param count The length of the C array * @return An initialized OFArray */ - initWithObjects: (id const*)objects count: (size_t)count;