@@ -28,11 +28,11 @@ { OFString *_name, *_value; OFDate *_expires; OFString *_domain, *_path; bool _secure, _HTTPOnly; - OFMutableArray OF_GENERIC(OFString*) *_extensions; + OFMutableArray OF_GENERIC(OFString *) *_extensions; } /*! * The name of the cookie. */ @@ -70,36 +70,36 @@ /*! * An array of other attributes. */ @property (readonly, nonatomic) - OFMutableArray OF_GENERIC(OFString*) *extensions; + OFMutableArray OF_GENERIC(OFString *) *extensions; /*! * @brief Create a new cookie with the specified name and value. * * @param name The name of the cookie * @param value The value of the cookie * @return A new, autoreleased OFHTTPCookie */ -+ (instancetype)cookieWithName: (OFString*)name - value: (OFString*)value; ++ (instancetype)cookieWithName: (OFString *)name + value: (OFString *)value; /*! * @brief Parses the specified string and returns an array of cookies. * * @param string The cookie string to parse * @return An array of cookies */ -+ (OFArray OF_GENERIC(OFHTTPCookie*)*)cookiesForString: (OFString*)string; ++ (OFArray OF_GENERIC(OFHTTPCookie *) *)cookiesForString: (OFString *)string; /*! * @brief Initializes an already allocated new cookie with the specified name * and value. * * @param name The name of the cookie * @param value The value of the cookie * @return An initialized OFHTTPCookie */ -- initWithName: (OFString*)name - value: (OFString*)value; +- initWithName: (OFString *)name + value: (OFString *)value; @end