Skip to content

Commit

Permalink
Minor polish
Browse files Browse the repository at this point in the history
  • Loading branch information
HowardHinnant committed Oct 17, 2016
1 parent 41657bc commit 769dc09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions d0355r1.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
Document number: D0355R1<br/>
<br/>
<a href="mailto:[email protected]">Howard E. Hinnant</a><br/>
2016-10-15<br/>
2016-10-16<br/>
</address>
<hr/>
<h1>Extending <code>&lt;chrono&gt;</code> to Calendars and Time Zones</h1>
Expand Down Expand Up @@ -2023,7 +2023,7 @@ <h3>20.17.7.7 local_time [time.clock.local_time]</h3>
based on the <i>pseudo clock</i> <code>local_t</code>. <code>local_t</code> has
no member <code>now()</code> and thus does not meet the clock requirements.
Nevertheless <code>local_time&lt;Duration&gt;</code> 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 <code>time_point</code>
algebra is available for <code>local_time&lt;Duration&gt;</code> (just as for
<code>sys_time&lt;Duration&gt;</code>).
Expand Down Expand Up @@ -2451,7 +2451,7 @@ <h4>20.17.8.3 Class <code>month</code> [time.calendar.month]</h4>

<blockquote>
<p>
<i>Effects:</i> If <code>m_ != 12</code>, <code>++m_</code>. Otherwise sets
<i>Effects:</i> If <code>m_ &lt; 12</code>, <code>++m_</code>. Otherwise sets
<code>m_</code> to 1.
</p>
<p>
Expand Down Expand Up @@ -2479,7 +2479,7 @@ <h4>20.17.8.3 Class <code>month</code> [time.calendar.month]</h4>

<blockquote>
<p>
<i>Effects:</i> If <code>m_ != 1</code>, <code>--m_</code>. Otherwise sets
<i>Effects:</i> If <code>m_ &gt; 1</code>, <code>--m_</code>. Otherwise sets
<code>m_</code> to 12.
</p>
<p>
Expand Down

0 comments on commit 769dc09

Please sign in to comment.