Skip to content

Commit a12dc66

Browse files
committed
fix minor error
1 parent 4c93e81 commit a12dc66

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

reference/chrono/weekday_constants.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ int main() {
5050
5151
// 曜日は循環する
5252
chrono::weekday u = chrono::Saturday;
53-
v += chrono::days{2};
54-
assert(v == chrono::Monday);
53+
u += chrono::days{2};
54+
assert(u == chrono::Monday);
5555
}
5656
```
5757
* chrono::Sunday[color ff0000]

0 commit comments

Comments
 (0)