@@ -54,11 +54,11 @@ /** * \brief Creates a new OFDate with the specified string in the specified * format. * - * The time zone used is UTC. See +[dateWithLocalDateString:format:] if you + * The time zone used is UTC. See \ref dateWithLocalDateString:format: if you * want local time. * * See the manpage for strftime for information on the format. * * \warning The format is currently limited to the following format specifiers: @@ -126,11 +126,11 @@ /** * \brief Initializes an already allocated OFDate with the specified string in * the specified format. * * The time zone used is UTC. If a time zone is specified anyway, an - * OFInvalidFormatException is thrown. See -[initWithLocalDateString:format:] + * OFInvalidFormatException is thrown. See \ref initWithLocalDateString:format: * if you want to specify a time zone. * * See the manpage for strftime for information on the format. * * \warning The format is currently limited to the following format specifiers: @@ -287,19 +287,19 @@ - (OFString*)localDateStringWithFormat: (OFConstantString*)format; /** * \brief Returns the earlier of the two dates. * - * \param date Another date + * \param otherDate Another date * \return The earlier date of the two dates */ - (OFDate*)earlierDate: (OFDate*)otherDate; /** * \brief Returns the later of the two dates. * - * \param date Another date + * \param otherDate Another date * \return The later date of the two dates */ - (OFDate*)laterDate: (OFDate*)otherDate; /** @@ -310,11 +310,11 @@ - (double)timeIntervalSince1970; /** * \brief Returns the seconds the receiver is after the date. * - * \param date Date date to generate the difference with receiver + * \param otherDate Date date to generate the difference with receiver * \return The seconds the receiver is after the date. */ - (double)timeIntervalSinceDate: (OFDate*)otherDate; /**