Index: src/OFMutableArray.h ================================================================== --- src/OFMutableArray.h +++ src/OFMutableArray.h @@ -33,11 +33,11 @@ - (void)addObject: (id)object; /*! * @brief Adds the objects from the specified OFArray to the end of the array. * - * @brief array An array of objects to add + * @param array An array of objects to add */ - (void)addObjectsFromArray: (OFArray*)array; /*! * @brief Inserts an object to the OFArray at the specified index. Index: src/OFString+JSONValue.h ================================================================== --- src/OFString+JSONValue.h +++ src/OFString+JSONValue.h @@ -57,12 +57,12 @@ * consisting of a single primitive. Therefore, you should not make any * assumptions about the object returned by this method if you don't * want your program to terminate due to a message not understood, but * instead check the returned object using @ref isKindOfClass:. * - * @brief depthLimit The maximum depth the parser should accept (defaults to 32 + * @param depthLimit The maximum depth the parser should accept (defaults to 32 * if not specified, 0 means no limit (insecure!)) * * @return An object */ - (id)JSONValueWithDepthLimit: (size_t)depthLimit; @end