Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
suomesta committed Sep 13, 2023
1 parent 01117d7 commit 2311413
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion reference/atomic/atomic_ref/op_minus_assign.md
Expand Up @@ -10,7 +10,7 @@ T operator-=(T operand) const noexcept;
```

## 概要
加算を行う
減算を行う


## 戻り値
Expand Down
4 changes: 2 additions & 2 deletions reference/chrono/weekday/op_decrement.md
Expand Up @@ -40,15 +40,15 @@ namespace chrono = std::chrono;

int main()
{
// 前置インクリメント
// 前置デクリメント
{
chrono::weekday w = chrono::Sunday;

assert(--w == chrono::Saturday);
assert(w == chrono::Saturday);
}

// 後置インクリメント
// 後置デクリメント
{
chrono::weekday w = chrono::Sunday;

Expand Down
4 changes: 2 additions & 2 deletions reference/chrono/year/op_decrement.md
Expand Up @@ -42,15 +42,15 @@ namespace chrono = std::chrono;

int main()
{
// 前置インクリメント
// 前置デクリメント
{
chrono::year y{2020};

assert(static_cast<int>(--y) == 2019);
assert(static_cast<int>(y) == 2019);
}

// 後置インクリメント
// 後置デクリメント
{
chrono::year y{2020};

Expand Down

0 comments on commit 2311413

Please sign in to comment.