Index: libs/date_time/xmldoc/time_period.xml =================================================================== --- libs/date_time/xmldoc/time_period.xml (revision 44992) +++ libs/date_time/xmldoc/time_period.xml (working copy) @@ -60,8 +60,9 @@ date d(2002,Jan,01); -ptime t(d, seconds(10)); //10 sec after midnight -time_period tp(t, hours(3)); +ptime t1(d, seconds(10)); //10 sec after midnight +ptime t2(d, hours(10)); //10 hours after midnight +time_period tp(t1, t2); @@ -72,9 +73,8 @@ date d(2002,Jan,01); -ptime t1(d, seconds(10)); //10 sec after midnight -ptime t2(d, hours(10)); //10 hours after midnight -time_period tp(t1, t2); +ptime t(d, seconds(10)); //10 sec after midnight +time_period tp(t, hours(3));