Skip to content

Commit

Permalink
fix some wrong link
Browse files Browse the repository at this point in the history
  • Loading branch information
suomesta committed Feb 17, 2024
1 parent d936b97 commit 57afeb8
Show file tree
Hide file tree
Showing 22 changed files with 33 additions and 28 deletions.
2 changes: 1 addition & 1 deletion reference/barrier/barrier/wait.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ int main()
}
```
* wait[color ff0000]
* arrive[link wait.md]
* arrive[link arrive.md]
* arrive_and_wait[link arrive_and_wait.md]
* std::move[link /reference/utility/move.md]
* std::this_thread::sleep_for[link /reference/thread/this_thread/sleep_for.md]
Expand Down
2 changes: 1 addition & 1 deletion reference/chrono/is_pm.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ int main()
* chrono::is_pm[color ff0000]
* chrono::hh_mm_ss[link hh_mm_ss.md]
* time.hours()[link hh_mm_ss/hours.md]
* chrono::is_am[link is_pm.md]
* chrono::is_am[link is_am.md]
### 出力
```
Expand Down
4 changes: 2 additions & 2 deletions reference/ctime/timespec_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ int main()
std::cout << std::ctime(&ts.tv_sec) << std::endl;
}
```
* std::timespec[color ff0000]
* std::timespec_get[link timespec_get.md]
* std::timespec_get[color ff0000]
* std::timespec[link timespec.md]
* TIME_UTC[link time_utc.md]
* ms.count()[link /reference/chrono/duration/count.md]

Expand Down
4 changes: 2 additions & 2 deletions reference/filesystem/file_time_type.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ int main()
fs::last_write_time("regular.txt", fs::file_time_type::clock::now());
}
```
* fs::last_write_time[color ff0000]
* fs::file_time_type[link file_time_type.md]
* fs::file_time_type[color ff0000]
* fs::last_write_time[link last_write_time.md]
* fs::create_directory[link create_directory.md]
* tp.time_since_epoch()[link /reference/chrono/time_point/time_since_epoch.md]
* sec.count()[link /reference/chrono/duration/count.md]
Expand Down
4 changes: 2 additions & 2 deletions reference/filesystem/path/end.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ int main()
}
```
* end()[color ff0000]
* p.begin()[link end.md]
* p.begin()[link begin.md]
* iterator[link iterator.md]
#### 出力
Expand Down Expand Up @@ -73,7 +73,7 @@ int main()
}
```
* end()[color ff0000]
* p.begin()[link end.md]
* p.begin()[link begin.md]
* iterator[link iterator.md]

#### 出力
Expand Down
4 changes: 2 additions & 2 deletions reference/filesystem/space.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ int main()
print_space("available", info.available);
}
```
* fs::space_info[color ff0000]
* fs::space[link space.md]
* fs::space[color ff0000]
* fs::space_info[link space_info.md]
* std::uintmax_t[link /reference/cstdint/uintmax_t.md]

#### 出力例
Expand Down
8 changes: 4 additions & 4 deletions reference/format/format.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,11 @@ int main() {

#### 出力
```
hello
"hello"
hello
0. hello
1. "hello"
2. hello
world
"hello\nworld"
3. "hello\nworld"
```

### コンテナ・Rangeを出力する (C++23)
Expand Down
2 changes: 1 addition & 1 deletion reference/locale/codecvt_byname.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace std {
class codecvt_byname : public codecvt<internT, externT, stateT>;
}
```
* codecvt[link codecvt_byname.md]
* codecvt[link codecvt.md]
## 概要
Expand Down
2 changes: 1 addition & 1 deletion reference/memory/shared_ptr/static_pointer_cast.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ int main() {
}
}
```
* std::static_pointer_cast[link static_pointer_cast.md]
* std::static_pointer_cast[color ff0000]
* std::make_shared[link /reference/memory/make_shared.md]

### 出力
Expand Down
2 changes: 1 addition & 1 deletion reference/queue/queue/pop.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ int main() {
return 0;
}
```
* pop()[link pop.md]
* pop()[color ff0000]
* que.push[link push.md]
* que.front()[link front.md]

Expand Down
2 changes: 1 addition & 1 deletion reference/stop_token/nostopstate.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ int main()
assert(st2.stop_possible() == false);
}
```
* std::nostopstate[color ff0000]
* std::stop_token[link stop_token.md]
* std::stop_source[link stop_source.md]
* std::nostopstate[link nostopstate.md]
* stop_possible()[link stop_token/stop_possible.md]
* get_token()[link stop_source/get_token.md]

Expand Down
2 changes: 1 addition & 1 deletion reference/stop_token/stop_callback.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ int main()
assert(msg == "hello world");
}
```
* std::stop_callback[color ff0000]
* std::stop_token[link stop_token.md]
* std::stop_source[link stop_source.md]
* std::stop_callback[link stop_callback.md]
* request_stop()[link stop_source/request_stop.md]
* get_token()[link stop_source/get_token.md]

Expand Down
2 changes: 1 addition & 1 deletion reference/stop_token/stop_source.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ int main()
assert(invoked == true);
}
```
* std::stop_source[color ff0000]
* std::stop_token[link stop_token.md]
* std::stop_source[link stop_source.md]
* stop_callback[link stop_callback.md]
* stop_requested()[link stop_token/stop_requested.md]
* request_stop()[link stop_source/request_stop.md]
Expand Down
2 changes: 1 addition & 1 deletion reference/stop_token/stop_source/get_token.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ int main()
assert(st2.stop_possible() == false);
}
```
* get_token()[color ff0000]
* std::stop_token[link ../stop_token.md]
* std::stop_source[link ../stop_source.md]
* std::nostopstate[link ../nostopstate.md]
* stop_possible()[link ../stop_token/stop_requested.md]
* get_token()[link get_token.md]

### 出力
```
Expand Down
2 changes: 1 addition & 1 deletion reference/stop_token/stop_source/request_stop.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ int main()
}
}
```
* request_stop()[color ff0000]
* stop_source[link ../stop_source.md]
* nostopstate[link ../nostopstate.md]
* stop_callback[link ../stop_callback.md]
* get_token()[link get_token.md]
* request_stop()[link request_stop.md]
* condition_variable_any[link /reference/condition_variable/condition_variable_any.md]
* cv.wait[link /reference/condition_variable/condition_variable_any/wait.md]
* std::this_thread::sleep_for[link /reference/thread/this_thread/sleep_for.md]
Expand Down
2 changes: 1 addition & 1 deletion reference/stop_token/stop_source/stop_possible.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ int main()
assert(ss2.stop_possible() == false);
}
```
* stop_possible()[color ff0000]
* stop_source[link ../stop_source.md]
* nostopstate[link ../nostopstate.md]
* stop_possible()[link stop_possible.md]

### 出力
```
Expand Down
2 changes: 1 addition & 1 deletion reference/stop_token/stop_source/stop_requested.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ int main()
assert(ss2.stop_requested() == false);
}
```
* stop_requested()[color ff0000]
* stop_source[link ../stop_source.md]
* std::nostopstate[link ../nostopstate.md]
* stop_requested()[link stop_requested.md]
* request_stop()[link request_stop.md]

### 出力
Expand Down
2 changes: 1 addition & 1 deletion reference/stop_token/stop_token.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ int main()
assert(st.stop_requested() == true);
}
```
* std::stop_token[link stop_token.md]
* std::stop_token[color ff0000]
* std::stop_source[link stop_source.md]
* stop_requested()[link stop_token/stop_requested.md]
* request_stop()[link stop_source/request_stop.md]
Expand Down
5 changes: 5 additions & 0 deletions reference/streambuf/basic_streambuf/setbuf.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ int main() {
}
```

### 出力例
```
ABC
```

## バージョン
### 言語
- C++98
Expand Down
2 changes: 1 addition & 1 deletion reference/string/basic_string/compare.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ int main()
std::cout << a.compare(c) << std::endl;
}
```
* compare[link compare.md]
* compare[color ff0000]

### 出力例
```
Expand Down
2 changes: 1 addition & 1 deletion reference/thread/jthread.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ int main()
return 0;
}
```
* std::jthread[link jthread.md]
* std::jthread[color ff0000]
* std::stop_token[link /reference/stop_token/stop_token.md]
* std::stop_callback[link /reference/stop_token/stop_callback.md]
* get_stop_token()[link jthread/get_stop_token.md]
Expand Down
2 changes: 1 addition & 1 deletion reference/unordered_map/unordered_map/at.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ int main()
return 0;
}
```
* c.at[color ff0000]
* um.insert[link insert.md]
* c.at[link at.md]

### 出力
```
Expand Down

0 comments on commit 57afeb8

Please sign in to comment.