Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix some typos and incorrect links #948

Merged
merged 2 commits into from
Mar 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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