From Jason Turner

[time.cal.ymwd]

Diff to HTML by rtfpessoa

tmp/tmp_561tcnj/{from.md → to.md} RENAMED
@@ -64,12 +64,12 @@ constexpr year_month_weekday(const sys_days& dp) noexcept;
64
  ```
65
 
66
  *Effects:* Constructs an object of type `year_month_weekday` which
67
  corresponds to the date represented by `dp`.
68
 
69
- *Remarks:* For any value `ymdl` of type `year_month_weekday` for which
70
- `ymdl.ok()` is `true`, `ymdl == year_month_weekday{sys_days{ymdl}}` is
71
  `true`.
72
 
73
  ``` cpp
74
  constexpr explicit year_month_weekday(const local_days& dp) noexcept;
75
  ```
@@ -243,9 +243,9 @@ template<class charT, class traits>
243
  ```
244
 
245
  *Effects:* Equivalent to:
246
 
247
  ``` cpp
248
- return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{}/{}/{}"),
249
  ymwd.year(), ymwd.month(), ymwd.weekday_indexed());
250
  ```
251
 
 
64
  ```
65
 
66
  *Effects:* Constructs an object of type `year_month_weekday` which
67
  corresponds to the date represented by `dp`.
68
 
69
+ *Remarks:* For any value `ymwd` of type `year_month_weekday` for which
70
+ `ymwd.ok()` is `true`, `ymwd == year_month_weekday{sys_days{ymwd}}` is
71
  `true`.
72
 
73
  ``` cpp
74
  constexpr explicit year_month_weekday(const local_days& dp) noexcept;
75
  ```
 
243
  ```
244
 
245
  *Effects:* Equivalent to:
246
 
247
  ``` cpp
248
+ return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{}/{:L}/{:L}"),
249
  ymwd.year(), ymwd.month(), ymwd.weekday_indexed());
250
  ```
251