Skip to content

Commit

Permalink
fix some typo
Browse files Browse the repository at this point in the history
  • Loading branch information
suomesta committed Oct 29, 2023
1 parent 3f57b63 commit de4b233
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lang/cpp20/simplifying_implicit_lambda_capture.md
Expand Up @@ -2,7 +2,7 @@
* cpp20[meta cpp]

## 概要
ここでは、ラムダ式での暗黙のキャプチャについて、以下のN個の問題を解決する
ここでは、ラムダ式での暗黙のキャプチャについて、以下の問題を解決する

1. ラムダ式内での`decltype((x))`の使用
2. ラムダ式での構造化束縛のキャプチャ
Expand Down
2 changes: 1 addition & 1 deletion reference/array/to_array.md
@@ -1,6 +1,6 @@
# to_array
* array[meta header]
* function[meta id-type]
* function template[meta id-type]
* std[meta namespace]
* cpp20[meta cpp]

Expand Down
4 changes: 2 additions & 2 deletions reference/string/char_traits/to_int_type.md
Expand Up @@ -28,11 +28,11 @@ static constexpr int_type to_int_type(char_type c) noexcept; // C++11
int main()
{
int x = std::char_traits<char>::to_char_type('A');
int x = std::char_traits<char>::to_int_type('A');
std::cout << std::hex << x << std::endl;
}
```
* to_char_type[color ff0000]
* to_int_type[color ff0000]

### 出力例
```
Expand Down

0 comments on commit de4b233

Please sign in to comment.