From Jason Turner

[time.cal.ymdlast]

Diff to HTML by rtfpessoa

tmp/tmpjh5f2el2/{from.md → to.md} RENAMED
@@ -121,11 +121,11 @@ constexpr chrono::day day() const noexcept;
121
 
122
  *Returns:* If `ok()` is `true`, returns a `day` representing the last
123
  day of the (`year`, `month`) pair represented by `*this`. Otherwise, the
124
  returned value is unspecified.
125
 
126
- [*Note 1*: This value may be computed on demand. — *end note*]
127
 
128
  ``` cpp
129
  constexpr operator sys_days() const noexcept;
130
  ```
131
 
@@ -228,9 +228,9 @@ template<class charT, class traits>
228
  ```
229
 
230
  *Effects:* Equivalent to:
231
 
232
  ``` cpp
233
- return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{}/{}"),
234
  ymdl.year(), ymdl.month_day_last());
235
  ```
236
 
 
121
 
122
  *Returns:* If `ok()` is `true`, returns a `day` representing the last
123
  day of the (`year`, `month`) pair represented by `*this`. Otherwise, the
124
  returned value is unspecified.
125
 
126
+ [*Note 1*: This value might be computed on demand. — *end note*]
127
 
128
  ``` cpp
129
  constexpr operator sys_days() const noexcept;
130
  ```
131
 
 
228
  ```
229
 
230
  *Effects:* Equivalent to:
231
 
232
  ``` cpp
233
+ return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{}/{:L}"),
234
  ymdl.year(), ymdl.month_day_last());
235
  ```
236