Index: src/OFArray.h ================================================================== --- src/OFArray.h +++ src/OFArray.h @@ -386,11 +386,11 @@ /*! * @brief Returns a copy of the array sorted using the specified selector and * options. * * @param selector The selector to use to sort the array. It's signature - * should be the same as that of @ref compare:. + * should be the same as that of @ref OFComparing#compare:. * @param options The options to use when sorting the array.@n * Possible values are: * Value | Description * ---------------------------|------------------------- * `OF_ARRAY_SORT_DESCENDING` | Sort in descending order Index: src/OFDictionary.h ================================================================== --- src/OFDictionary.h +++ src/OFDictionary.h @@ -228,12 +228,12 @@ * @brief Sets a value for a key. * * If the key starts with an `@`, the `@` is stripped and * `[super setValue:forKey:]` is called. * If the key does not start with an `@`, this is equivalent to - * @ref setObject:forKey:. In this case, if the dictionary is immutable, an - * @ref OFUndefinedKeyException is thrown. + * OFMutableDictionary#setObject:forKey:. In this case, if the dictionary is + * immutable, an @ref OFUndefinedKeyException is thrown. * * @param key The key to set * @param value The value to set the key to */ - (void)setValue: (id)value Index: src/OFMutableArray.h ================================================================== --- src/OFMutableArray.h +++ src/OFMutableArray.h @@ -197,11 +197,11 @@ /*! * @brief Sorts the array using the specified selector and options. * * @param selector The selector to use to sort the array. It's signature - * should be the same as that of @ref compare:. + * should be the same as that of @ref OFComparing#compare:. * @param options The options to use when sorting the array.@n * Possible values are: * Value | Description * ---------------------------|------------------------- * `OF_ARRAY_SORT_DESCENDING` | Sort in descending order Index: src/OFObject.h ================================================================== --- src/OFObject.h +++ src/OFObject.h @@ -1135,11 +1135,11 @@ * * @brief A protocol for comparing objects. * * This protocol is implemented by objects that can be compared. */ -@protocol OFComparing +@protocol OFComparing /*! * @brief Compares the object with another object. * * @param object An object to compare the object to * @return The result of the comparison