Skip to content

Commit 246b785

Browse files
committed
_num の抜けを修正
1 parent 8d46680 commit 246b785

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

reference/atomic/atomic_ref/fetch_fminimum_num.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ constexpr T
3131
## 備考
3232
- この関数は、`atomic_ref`クラスの浮動小数点数型で定義される
3333
- 浮動小数点数型
34-
- [`std::fminimum_num()`](/reference/cmath/fminimum.md)関数と同様の動作をする
34+
- [`std::fminimum_num()`](/reference/cmath/fminimum_num.md)関数と同様の動作をする
3535
3636
3737
## 例
@@ -42,13 +42,13 @@ constexpr T
4242
int main()
4343
{
4444
int x = 3;
45-
int ret = std::atomic_ref{x}.fetch_fminimum(2);
45+
int ret = std::atomic_ref{x}.fetch_fminimum_num(2);
4646
4747
std::cout << ret << std::endl;
4848
std::cout << x << std::endl;
4949
}
5050
```
51-
* fetch_fminimum[color ff0000]
51+
* fetch_fminimum_num[color ff0000]
5252

5353

5454
### 出力

0 commit comments

Comments
 (0)