Fix: correct format (#5175)

This commit is contained in:
Jonas Bülow
2026-01-30 10:54:23 +01:00
committed by GitHub
parent b9162450ab
commit 3736c59c66
2 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ public:
/// * %i - millisecond (000 .. 999)
/// * %c - centisecond (0 .. 9)
/// * %F - fractional seconds/microseconds (000000 - 999999)
/// * %z - time zone differential in ISO 8601 format (Z or +NN.NN)
/// * %z - time zone differential in ISO 8601 format (Z or +NN:NN)
/// * %Z - time zone differential in RFC format (GMT or +NNNN)
/// * %% - percent sign
///

View File

@@ -69,7 +69,7 @@ class Foundation_API PatternFormatter: public Formatter
/// * %i - message date/time millisecond (000 .. 999)
/// * %c - message date/time centisecond (0 .. 9)
/// * %F - message date/time fractional seconds/microseconds (000000 - 999999)
/// * %z - time zone differential in ISO 8601 format (Z or +NN.NN)
/// * %z - time zone differential in ISO 8601 format (Z or +NN:NN)
/// * %Z - time zone differential in RFC format (GMT or +NNNN)
/// * %L - convert time to local time (must be specified before any date/time specifier; does not itself output anything)
/// * %E - epoch time (UTC, seconds since midnight, January 1, 1970)