Skip to content

Commit a754d24

Browse files
committed
style: "/*see below*/ => see below" の書き換え
備考: 機械的置換 + 手動でコメントの横位置を調整
1 parent 7b47559 commit a754d24

File tree

26 files changed

+38
-38
lines changed

26 files changed

+38
-38
lines changed

reference/charconv/from_chars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace std {
1010
from_chars_result
1111
from_chars(const char* first,
1212
const char* last,
13-
/*see below*/& value,
13+
see below& value,
1414
int base = 10); // (1) C++17
1515
constexpr from_chars_result
1616
from_chars(const char* first,

reference/charconv/to_chars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace std {
1010
to_chars_result
1111
to_chars(char* first,
1212
char* last,
13-
/*see below*/ value,
13+
see below value,
1414
int base = 10); // (1) C++17
1515
constexpr to_chars_result
1616
to_chars(char* first,

reference/compare/three_way_comparable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
```cpp
88
namespace std {
99
template<class T, class Cat = partial_ordering>
10-
concept three_way_comparable = /*see below*/; // (1)
10+
concept three_way_comparable = see below; // (1)
1111

1212
template<class T, class U, class Cat = partial_ordering>
13-
concept three_way_comparable_with = /*see below*/; // (2)
13+
concept three_way_comparable_with = see below; // (2)
1414
}
1515
```
1616

reference/concepts/boolean-testable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```cpp
88
namespace std {
99
template<class T>
10-
concept boolean-testable = /*see below*/; // 説明専用コンセプト
10+
concept boolean-testable = see below; // 説明専用コンセプト
1111
}
1212
```
1313

reference/concepts/default_initializable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```cpp
88
namespace std {
99
template<class T>
10-
concept default_initializable = /*see below*/;
10+
concept default_initializable = see below;
1111
}
1212
```
1313

reference/concepts/equality_comparable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
```cpp
88
namespace std {
99
template<class T>
10-
concept equality_comparable = /*see below*/; // (1)
10+
concept equality_comparable = see below; // (1)
1111

1212
template<class T, class U>
13-
concept equality_comparable_with = /*see below*/; // (2)
13+
concept equality_comparable_with = see below; // (2)
1414
}
1515
```
1616

reference/concepts/same_as.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```cpp
88
namespace std {
99
template <class T, class U>
10-
concept same_as = /*see below*/;
10+
concept same_as = see below;
1111
}
1212
```
1313

reference/execution/execution/gather-signatures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ template<class Tag,
99
valid-completion-signatures Completions,
1010
template<class...> class Tuple,
1111
template<class...> class Variant>
12-
using gather-signatures = /*see below*/;
12+
using gather-signatures = see below;
1313
```
1414
* valid-completion-signatures[link completion_signatures.md]
1515

reference/execution/is-awaitable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concept is-awaitable;
2323
2424
```cpp
2525
template<class T>
26-
concept await-suspend-result = /*see below*/;
26+
concept await-suspend-result = see below;
2727
2828
template<class A, class Promise>
2929
concept is-awaiter =

reference/functional/reference_wrapper/op_constructor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77

88
```cpp
99
template<class U>
10-
reference_wrapper(U&& u) noexcept(/*see below*/); // (1) C++11
10+
reference_wrapper(U&& u) noexcept(see below); // (1) C++11
1111

1212
template<class U>
13-
constexpr reference_wrapper(U&& u) noexcept(/*see below*/); // (1) C++20
13+
constexpr reference_wrapper(U&& u) noexcept(see below); // (1) C++20
1414

1515
reference_wrapper(const reference_wrapper& x) noexcept; // (2) C++11
1616

0 commit comments

Comments
 (0)