Skip to content

Commit 7e1ca38

Browse files
committed
style(utility,format): "see{[-_] => }below" の書き換え
1 parent a754d24 commit 7e1ca38

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

reference/format/visit_format_arg.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@
88
```cpp
99
namespace std {
1010
template<class Visitor, class Context>
11-
see_below visit_format_arg(Visitor&& vis, basic_format_arg<Context> arg); // (1)
11+
see below visit_format_arg(Visitor&& vis, basic_format_arg<Context> arg); // (1)
1212
}
1313
```
14-
* see_below[italic]
1514
* basic_format_arg[link /reference/format/basic_format_arg.md]
1615
1716
## 概要

reference/utility/forward_like.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@
88
namespace std {
99
template <class T, class U>
1010
[[nodiscard]]
11-
constexpr auto forward_like(U&& x) noexcept -> see-below; // (1) C++23
11+
constexpr auto forward_like(U&& x) noexcept -> see below; // (1) C++23
1212
template <class T, class U>
13-
constexpr auto forward_like(U&& x) noexcept -> see-below; // (1) C++26
13+
constexpr auto forward_like(U&& x) noexcept -> see below; // (1) C++26
1414
}
1515
```
16-
* see-below[italic]
1716
1817
## 概要
1918
第一テンプレート引数の`const`性と参照修飾を用いて関数テンプレートの引数を転送する。

0 commit comments

Comments
 (0)