Fix mistake in wxDateTime::Tm struct documentation

yday field values starts from 0 and mday starts from 1, contrary to what
was actually written.

Closes #18534.
This commit is contained in:
Vadim Zeitlin
2019-10-20 15:37:13 +02:00
parent 5925893eed
commit 128608dc25

View File

@@ -274,7 +274,7 @@ public:
This struct is analogous to standard C <code>struct tm</code> and uses
the same, not always immediately obvious, conventions for its members:
notably its mon and mday fields count from 0 while yday counts from 1.
notably its mon and yday fields count from 0 while mday counts from 1.
*/
struct Tm
{