Skip to content

Commit 4c93e81

Browse files
committed
fix typo
1 parent d43de45 commit 4c93e81

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

reference/chrono/weekday/op_ostream.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ namespace std::chrono {
2121
2222
- (1) : 以下と等価:
2323
```cpp
24-
return os << (m.ok() ?
25-
format(os.getloc(), STATICALLY-WIDEN<charT>("{:L%a}"), m) :
24+
return os << (wd.ok() ?
25+
format(os.getloc(), STATICALLY-WIDEN<charT>("{:L%a}"), wd) :
2626
format(os.getloc(), STATICALLY-WIDEN<charT>("{} is not a valid weekday"),
27-
static_cast<unsigned int>(m)));
27+
static_cast<unsigned int>(wd)));
2828
```
2929
* format[link /reference/format/format.md]
3030
* os.getloc()[link /reference/ios/ios_base/getloc.md]

0 commit comments

Comments
 (0)