From Jason Turner

[time.traits.duration_values]

Diff to HTML by rtfpessoa

tmp/tmpknd__pt2/{from.md → to.md} RENAMED
@@ -19,26 +19,29 @@ that case, the author of that class type should specialize
19
 
20
  ``` cpp
21
  static constexpr Rep zero();
22
  ```
23
 
24
- *Returns:* `Rep(0)`. `Rep(0)` is specified instead of `Rep()` because
25
- `Rep()` may have some other meaning, such as an uninitialized value.
26
 
27
- The value returned shall be the additive identity.
 
 
 
28
 
29
  ``` cpp
30
  static constexpr Rep min();
31
  ```
32
 
33
  *Returns:* `numeric_limits<Rep>::lowest()`.
34
 
35
- The value returned shall compare less than or equal to `zero()`.
 
36
 
37
  ``` cpp
38
  static constexpr Rep max();
39
  ```
40
 
41
  *Returns:* `numeric_limits<Rep>::max()`.
42
 
43
- The value returned shall compare greater than `zero()`.
44
 
 
19
 
20
  ``` cpp
21
  static constexpr Rep zero();
22
  ```
23
 
24
+ *Returns:* `Rep(0)`.
 
25
 
26
+ [*Note 1*: `Rep(0)` is specified instead of `Rep()` because `Rep()` may
27
+ have some other meaning, such as an uninitialized value. — *end note*]
28
+
29
+ *Remarks:* The value returned shall be the additive identity.
30
 
31
  ``` cpp
32
  static constexpr Rep min();
33
  ```
34
 
35
  *Returns:* `numeric_limits<Rep>::lowest()`.
36
 
37
+ *Remarks:* The value returned shall compare less than or equal to
38
+ `zero()`.
39
 
40
  ``` cpp
41
  static constexpr Rep max();
42
  ```
43
 
44
  *Returns:* `numeric_limits<Rep>::max()`.
45
 
46
+ *Remarks:* The value returned shall compare greater than `zero()`.
47