@@ -61,11 +61,11 @@ * format. * * 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. + * See the man page for `strftime` for information on the format. * * @warning The format is currently limited to the following format specifiers: * %%a, %%b, %%d, %%e, %%H, %%m, %%M, %%S, %%y, %%Y, %%z, %%, %%n and * %%t. * @@ -78,11 +78,11 @@ /*! * @brief Creates a new OFDate with the specified string in the specified * format. * - * See the manpage for strftime for information on the format. + * See the man page for `strftime` for information on the format. * * @warning The format is currently limited to the following format specifiers: * %%a, %%b, %%d, %%e, %%H, %%m, %%M, %%S, %%y, %%Y, %%z, %%, %%n and * %%t. * @@ -135,11 +135,11 @@ * * The time zone used is UTC. If a time zone is specified anyway, an * 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. + * See the man page for `strftime` for information on the format. * * @warning The format is currently limited to the following format specifiers: * %%d, %%e, %%H, %%m, %%M, %%S, %%y, %%Y, %%, %%n and %%t. * * @param string The string describing the date @@ -153,11 +153,11 @@ * @brief Initializes an already allocated OFDate with the specified string in * the specified format. * * If no time zone is specified, local time is assumed. * - * See the manpage for strftime for information on the format. + * See the man page for `strftime` for information on the format. * * @warning The format is currently limited to the following format specifiers: * %%d, %%e, %%H, %%m, %%M, %%S, %%y, %%Y, %%, %%n and %%t. * * @param string The string describing the date @@ -273,21 +273,21 @@ - (uint16_t)localDayOfYear; /*! * @brief Creates a string of the date with the specified format. * - * See the manpage for strftime for information on the 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*)dateStringWithFormat: (OFConstantString*)format; /*! * @brief Creates a string of the local date with the specified format. * - * See the manpage for strftime for information on the 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;