Skip to content

Commit

Permalink
Merge pull request #948 from cpprefjp/fix_typos
Browse files Browse the repository at this point in the history
fix some typos and incorrect links
  • Loading branch information
suomesta authored Mar 9, 2022
2 parents 9c5a30d + f2f75d1 commit a11952d
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion reference/initializer_list/initializer_list/begin.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ int main()


## 参照
- [N3469 Constexpr Library Additions: chrono, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3469.html)
- [N3471 Constexpr Library Additions: utilities, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3471.html)

2 changes: 1 addition & 1 deletion reference/initializer_list/initializer_list/begin_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ int main()

## 参照
- [N3257 Range-based for statements and ADL](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3257.pdf)
- [N3469 Constexpr Library Additions: chrono, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3469.html)
- [N3471 Constexpr Library Additions: utilities, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3471.html)

2 changes: 1 addition & 1 deletion reference/initializer_list/initializer_list/end.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ int main()


## 参照
- [N3469 Constexpr Library Additions: chrono, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3469.html)
- [N3471 Constexpr Library Additions: utilities, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3471.html)

2 changes: 1 addition & 1 deletion reference/initializer_list/initializer_list/end_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ int main()

## 参照
- [N3257 Range-based for statements and ADL](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3257.pdf)
- [N3469 Constexpr Library Additions: chrono, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3469.html)
- [N3471 Constexpr Library Additions: utilities, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3471.html)

Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ int main()


## 参照
- [N3469 Constexpr Library Additions: chrono, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3469.html)
- [N3471 Constexpr Library Additions: utilities, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3471.html)

2 changes: 1 addition & 1 deletion reference/initializer_list/initializer_list/size.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ int main()


## 参照
- [N3469 Constexpr Library Additions: chrono, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3469.html)
- [N3471 Constexpr Library Additions: utilities, v3](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3471.html)

2 changes: 1 addition & 1 deletion reference/iomanip/resetiosflags.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ int main()
std::cout << f << '\n';
}
```
* std::setw[color ff0000]
* std::resetiosflags[color ff0000]


## 出力例
Expand Down
5 changes: 3 additions & 2 deletions reference/iomanip/setfill.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# setfill
* iomanip[meta header]
* std[meta namespace]
* function[meta id-type]
* function template[meta id-type]

```cpp
namespace std {
unspecified setfill(char_type c);
template <class CharT>
unspecified setfill(CharT c);
}
```
* unspecified[italic]
Expand Down
2 changes: 1 addition & 1 deletion reference/iomanip/setiosflags.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ int main()
std::cout << f << '\n';
}
```
* std::setw[color ff0000]
* std::setiosflags[color ff0000]


## 出力例
Expand Down

0 comments on commit a11952d

Please sign in to comment.