diff --git a/d0355r1.html b/d0355r1.html
index 642544a..51fa779 100644
--- a/d0355r1.html
+++ b/d0355r1.html
@@ -31,7 +31,7 @@
Document number: D0355R1
Howard E. Hinnant
-2016-10-15
+2016-10-16
<chrono>
to Calendars and Time Zoneslocal_time<Duration>
are
based on the pseudo clock local_t
. local_t
has
no member now()
and thus does not meet the clock requirements.
Nevertheless local_time<Duration>
serves the vital role of
-representing time local with respect to a not-yet-specified time zone. Aside
+representing local time with respect to a not-yet-specified time zone. Aside
from being able to get the current time, the complete time_point
algebra is available for local_time<Duration>
(just as for
sys_time<Duration>
).
@@ -2451,7 +2451,7 @@ constexpr month& month::operator++() noexcept;
-Effects: If
m_ != 12
,++m_
. Otherwise sets +Effects: Ifm_ < 12
,++m_
. Otherwise setsm_
to 1.@@ -2479,7 +2479,7 @@ constexpr month& month::operator--() noexcept;
-Effects: If
m_ != 1
,--m_
. Otherwise sets +Effects: Ifm_ > 1
,--m_
. Otherwise setsm_
to 12.