Skip to content

Commit

Permalink
Merge pull request #835 from cpprefjp/fix-817
Browse files Browse the repository at this point in the history
戻り値の説明文が型の修正に追従していなかった問題に対応
  • Loading branch information
faithandbrave committed Jan 1, 2021
2 parents a6d3326 + dccb0d0 commit 4c35192
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
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

0 comments on commit 4c35192

Please sign in to comment.