@@ -73,24 +73,24 @@ * * @param name The name of the attribute * @param stringValue The string value of the attribute * @return An initialized OFXMLAttribute with the specified parameters */ -- initWithName: (OFString *)name - stringValue: (OFString *)stringValue; +- (instancetype)initWithName: (OFString *)name + stringValue: (OFString *)stringValue; /*! * @brief Initializes an already allocated OFXMLAttribute. * * @param name The name of the attribute * @param namespace_ The namespace of the attribute * @param stringValue The string value of the attribute * @return An initialized OFXMLAttribute with the specified parameters */ -- initWithName: (OFString *)name - namespace: (nullable OFString *)namespace_ - stringValue: (OFString *)stringValue; +- (instancetype)initWithName: (OFString *)name + namespace: (nullable OFString *)namespace_ + stringValue: (OFString *)stringValue; -- initWithSerialization: (OFXMLElement *)element; +- (instancetype)initWithSerialization: (OFXMLElement *)element; @end OF_ASSUME_NONNULL_END