@@ -71,12 +71,12 @@ * * @param string The string describing the date * @param format The format of the string describing the date * @return A new, autoreleased OFDate with the specified date and time */ -+ (instancetype)dateWithDateString: (OFString*)string - format: (OFString*)format; ++ (instancetype)dateWithDateString: (OFString *)string + format: (OFString *)format; /*! * @brief Creates a new OFDate with the specified string in the specified * format. * @@ -88,12 +88,12 @@ * * @param string The string describing the date * @param format The format of the string describing the date * @return A new, autoreleased OFDate with the specified date and time */ -+ (instancetype)dateWithLocalDateString: (OFString*)string - format: (OFString*)format; ++ (instancetype)dateWithLocalDateString: (OFString *)string + format: (OFString *)format; /*! * @brief Returns a date in the distant future. * * The date is system-dependant. @@ -144,12 +144,12 @@ * * @param string The string describing the date * @param format The format of the string describing the date * @return An initialized OFDate with the specified date and time */ -- initWithDateString: (OFString*)string - format: (OFString*)format; +- initWithDateString: (OFString *)string + format: (OFString *)format; /*! * @brief Initializes an already allocated OFDate with the specified string in * the specified format. * @@ -162,12 +162,12 @@ * * @param string The string describing the date * @param format The format of the string describing the date * @return An initialized OFDate with the specified date and time */ -- initWithLocalDateString: (OFString*)string - format: (OFString*)format; +- initWithLocalDateString: (OFString *)string + format: (OFString *)format; /*! * @brief Returns the microsecond of the date. * * @return The microsecond of the date @@ -278,41 +278,41 @@ * See the man page for `strftime` for information on the format. * * @param format The format for the date string * @return A new, autoreleased OFString */ -- (OFString*)dateStringWithFormat: (OFConstantString*)format; +- (OFString *)dateStringWithFormat: (OFConstantString *)format; /*! * @brief Creates a string of the local date with the specified format. * * See the man page for `strftime` for information on the format. * * @param format The format for the date string * @return A new, autoreleased OFString */ -- (OFString*)localDateStringWithFormat: (OFConstantString*)format; +- (OFString *)localDateStringWithFormat: (OFConstantString *)format; /*! * @brief Returns the earlier of the two dates. * * If the argument is `nil`, it returns the receiver. * * @param otherDate Another date * @return The earlier date of the two dates */ -- (OFDate*)earlierDate: (OFDate*)otherDate; +- (OFDate *)earlierDate: (OFDate *)otherDate; /*! * @brief Returns the later of the two dates. * * If the argument is `nil`, it returns the receiver. * * @param otherDate Another date * @return The later date of the two dates */ -- (OFDate*)laterDate: (OFDate*)otherDate; +- (OFDate *)laterDate: (OFDate *)otherDate; /*! * @brief Returns the seconds since 1970-01-01T00:00:00Z. * * @return The seconds since 1970-01-01T00:00:00Z @@ -323,11 +323,11 @@ * @brief Returns the seconds the receiver is after the date. * * @param otherDate Date date to generate the difference with receiver * @return The seconds the receiver is after the date. */ -- (of_time_interval_t)timeIntervalSinceDate: (OFDate*)otherDate; +- (of_time_interval_t)timeIntervalSinceDate: (OFDate *)otherDate; /*! * @brief Returns the seconds the receiver is in the future. * * @return The seconds the receiver is in the future @@ -338,9 +338,9 @@ * @brief Creates a new date with the specified time interval added. * * @param seconds The seconds after the date * @return A new, autoreleased OFDate */ -- (OFDate*)dateByAddingTimeInterval: (of_time_interval_t)seconds; +- (OFDate *)dateByAddingTimeInterval: (of_time_interval_t)seconds; @end OF_ASSUME_NONNULL_END