Skip to content

Commit 53e132e

Browse files
committed
fix(reference/{cstdio,format}): use "unspecified" rather than "/* unspecified */"
1 parent 6ca1dc1 commit 53e132e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

reference/cstdio/file.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55

66
```cpp
77
namespace std {
8-
using FILE = /* unspecified */;
8+
using FILE = unspecified;
99
}
1010
```
11+
* unspecified[italic]
1112
1213
## 概要
1314
`FILE`型は、ストリームの制御に必要な情報を持つオブジェクト型である。

reference/format/formattable.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 charT>
10-
using fmt-iter-for = /* unspecified */;
10+
using fmt-iter-for = unspecified;
1111

1212
template <class T, class charT>
1313
concept formattable =

0 commit comments

Comments
 (0)