@@ -114,11 +114,11 @@ * @return A new autoreleased OFArray */ + (instancetype)arrayWithObject: (ObjectType)object; /*! - * @brief Creates a new OFArray with the specified objects, terminated by nil. + * @brief Creates a new OFArray with the specified objects, terminated by `nil`. * * @param firstObject The first object in the array * @return A new autoreleased OFArray */ + (instancetype)arrayWithObjects: (ObjectType)firstObject, ... OF_SENTINEL; @@ -254,26 +254,26 @@ * address */ - (bool)containsObjectIdenticalTo: (nullable ObjectType)object; /*! - * @brief Returns the first object of the array or nil. + * @brief Returns the first object of the array or `nil`. * * @warning The returned object is *not* retained and autoreleased for * performance reasons! * - * @return The first object of the array or nil + * @return The first object of the array or `nil` */ - (nullable ObjectType)firstObject; /*! - * @brief Returns the last object of the array or nil. + * @brief Returns the last object of the array or `nil`. * * @warning The returned object is *not* retained and autoreleased for * performance reasons! * - * @return The last object of the array or nil + * @return The last object of the array or `nil` */ - (nullable ObjectType)lastObject; /*! * @brief Returns the objects in the specified range as a new OFArray. @@ -438,11 +438,11 @@ (of_array_filter_block_t)block; /*! * @brief Folds the array to a single object using the specified block. * - * If the array is empty, it will return nil. + * If the array is empty, it will return `nil`. * * If there is only one object in the array, that object will be returned and * the block will not be invoked. * * If there are at least two objects, the block is invoked for each object