From Jason Turner

[time.hms]

Diff to HTML by rtfpessoa

tmp/tmpum1yn3cd/{from.md → to.md} RENAMED
@@ -39,11 +39,11 @@ the time is split. A `hh_mm_ss` models negative durations with a
39
  distinct `is_negative` getter that returns `true` when the input
40
  duration is negative. The individual duration fields always return
41
  non-negative durations even when `is_negative()` indicates the structure
42
  is representing a negative duration.
43
 
44
- If `Duration` is not an instance of `duration`, the program is
45
  ill-formed.
46
 
47
  ### Members <a id="time.hms.members">[[time.hms.members]]</a>
48
 
49
  ``` cpp
@@ -172,11 +172,11 @@ operator<<(basic_ostream<charT, traits>& os, const hh_mm_ss<Duration>& hms);
172
  ```
173
 
174
  *Effects:* Equivalent to:
175
 
176
  ``` cpp
177
- return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{:%T}"), hms);
178
  ```
179
 
180
  [*Example 1*:
181
 
182
  ``` cpp
 
39
  distinct `is_negative` getter that returns `true` when the input
40
  duration is negative. The individual duration fields always return
41
  non-negative durations even when `is_negative()` indicates the structure
42
  is representing a negative duration.
43
 
44
+ If `Duration` is not a specialization of `duration`, the program is
45
  ill-formed.
46
 
47
  ### Members <a id="time.hms.members">[[time.hms.members]]</a>
48
 
49
  ``` cpp
 
172
  ```
173
 
174
  *Effects:* Equivalent to:
175
 
176
  ``` cpp
177
+ return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{:L%T}"), hms);
178
  ```
179
 
180
  [*Example 1*:
181
 
182
  ``` cpp