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

戻り値の説明文が型の修正に追従していなかった問題に対応 #835

Merged
merged 1 commit into from
Jan 1, 2021
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/deque/deque/erase_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ return r;


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/deque/deque/erase_if_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ return r;


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/forward_list/forward_list/erase_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ erase_if(c, [&](auto& elem) { return elem == value; });


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/forward_list/forward_list/erase_if_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ c.remove_if(pred);


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/list/list/erase_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ erase_if(c, [&](auto& elem) { return elem == value; });


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/list/list/erase_if_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ c.remove_if(pred);


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/string/basic_string/erase_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ return r;


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/string/basic_string/erase_if_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ return r;


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/vector/vector/erase_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ return r;


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down
2 changes: 1 addition & 1 deletion reference/vector/vector/erase_if_free.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ return r;


## 戻り値
なし
削除した要素数を返す。


## 例
Expand Down