From 2f8d22b5a03b96efe212a42cdb6d14c347aedc9b Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Sat, 16 Sep 2017 14:12:13 -0400 Subject: [PATCH] Fix minor typeos --- d0355r4.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/d0355r4.html b/d0355r4.html index cde2b27..b3979c9 100644 --- a/d0355r4.html +++ b/d0355r4.html @@ -37,7 +37,7 @@ Document number: D0355R4

Howard E. Hinnant
-2017-08-13
+2017-09-16

Extending <chrono> to Calendars and Time Zones

@@ -9719,7 +9719,7 @@ bool operator>=(const time_zone& x, const time_zone& y) noexcept;

zoned_traits provides a means for customizing the behavior of -zoned_time<Duration, TimeZonePtr for the +zoned_time<Duration, TimeZonePtr> for the zoned_time default constructor, and constructors taking string_view. A specialization for const time_zone* is provided by the implementation. @@ -9741,7 +9741,7 @@ static const time_zone* zoned_traits<const time_zone*>::default_zone();

-Returns: date::locate_zone("UTC"). +Returns: std::chrono::locate_zone("UTC").

@@ -9750,7 +9750,7 @@ static const time_zone* zoned_traits<const time_zone*>::locate_zone(string

-Returns: date::locate_zone(name). +Returns: std::chrono::locate_zone(name).