@@ -15,11 +15,11 @@ */ #import "OFDictionary.h" #ifdef OF_HAVE_BLOCKS -typedef id (^of_dictionary_replace_block_t)(id key, id obj, BOOL *stop); +typedef id (^of_dictionary_replace_block_t)(id key, id object, BOOL *stop); #endif /** * \brief A class for using mutable hash tables. */ @@ -31,13 +31,13 @@ /** * Sets an object for a key. * A key can be any object. * * \param key The key to set - * \param obj The object to set the key to + * \param object The object to set the key to */ -- (void)setObject: (id)obj +- (void)setObject: (id)object forKey: (id )key; /** * Remove the object with the given key from the dictionary. *