Fix wording

Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
Thomas Lauf 2023-04-18 23:17:50 +02:00
parent 38cf5aa6f4
commit 12c089aee1

View file

@ -410,7 +410,7 @@ bool DatetimeParser::parse_named (Pig& pig)
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Valid epoch values are unsigned integers after 1980-01-01T00:00:00Z. This // Valid epoch values are unsigned integers after 1980-01-01T00:00:00Z. This
// restriction means that '12' will not be identified as an epoch date. // restriction means that "12" will not be identified as an epoch date.
bool DatetimeParser::parse_epoch (Pig& pig) bool DatetimeParser::parse_epoch (Pig& pig)
{ {
auto checkpoint = pig.cursor (); auto checkpoint = pig.cursor ();
@ -2815,7 +2815,7 @@ bool DatetimeParser::validate ()
// int tm_year; year - 1900 // int tm_year; year - 1900
// int tm_wday; day of week (Sunday = 0) // int tm_wday; day of week (Sunday = 0)
// int tm_yday; day of year (0 - 365) // int tm_yday; day of year (0 - 365)
// int tm_isdst; is summer time in effect? // int tm_isdst; is daylight saving time in effect?
// char *tm_zone; abbreviation of timezone name // char *tm_zone; abbreviation of timezone name
// long tm_gmtoff; offset from UTC in seconds // long tm_gmtoff; offset from UTC in seconds
void DatetimeParser::resolve () void DatetimeParser::resolve ()