@@ -116,11 +116,11 @@ * @brief Initializes an already allocated OFDictionary with the specified key * and object. * * @param key The key * @param object The object - * @return A new initialized OFDictionary + * @return An initialized OFDictionary */ - initWithObject: (id)object forKey: (id)key; /*! @@ -127,11 +127,11 @@ * @brief Initializes an already allocated OFDictionary with the specified keys * and objects. * * @param keys An array of keys * @param objects An array of objects - * @return A new initialized OFDictionary + * @return An initialized OFDictionary */ - initWithObjects: (OFArray*)objects forKeys: (OFArray*)keys; /*! @@ -139,11 +139,11 @@ * and objects. * * @param keys An array of keys * @param objects An array of objects * @param count The number of objects in the arrays - * @return A new initialized OFDictionary + * @return An initialized OFDictionary */ - initWithObjects: (id const*)objects forKeys: (id const*)keys count: (size_t)count; @@ -150,21 +150,21 @@ /*! * @brief Initializes an already allocated OFDictionary with the specified keys * and objects. * * @param firstKey The first key - * @return A new initialized OFDictionary + * @return An initialized OFDictionary */ - initWithKeysAndObjects: (id)firstKey, ... OF_SENTINEL; /*! * @brief Initializes an already allocated OFDictionary with the specified key * and va_list. * * @param firstKey The first key * @param arguments A va_list of the other arguments - * @return A new initialized OFDictionary + * @return An initialized OFDictionary */ - initWithKey: (id)firstKey arguments: (va_list)arguments; /*!