@@ -33,15 +33,17 @@ * \returns An OFEnumerator to enumerate through all objects of the collection */ - (OFEnumerator*)objectEnumerator; /** - * \return A boolean whether the collection contains the specified object. + * \param The object which is checked for being in the collection + * \return A boolean whether the collection contains the specified object */ -- (BOOL)containsObject: (id)obj; +- (BOOL)containsObject: (id)object; /** + * \param The object which is checked for being in the collection * \return A boolean whether the collection contains an object with the * specified address. */ -- (BOOL)containsObjectIdenticalTo: (id)obj; +- (BOOL)containsObjectIdenticalTo: (id)object; @end