Skip to content

Commit

Permalink
fix some typo
Browse files Browse the repository at this point in the history
  • Loading branch information
suomesta committed May 12, 2024
1 parent a741689 commit 4d8ffbe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion reference/algorithm/nth_element.md
Expand Up @@ -87,7 +87,7 @@ int main()
```
* std::nth_element[color ff0000]

### 出力
### 出力例
```
2
1
Expand Down
2 changes: 2 additions & 0 deletions reference/execution/execution/execution_policy.md
Expand Up @@ -159,6 +159,8 @@ int main()
}
}
```
* std::execution::par[color ff0000]
* std::execution::par_unseq[color ff0000]
* count.load[link /reference/atomic/atomic/load.md]
* is_always_lock_free[link /reference/atomic/atomic/is_always_lock_free.md.nolink]

Expand Down
2 changes: 1 addition & 1 deletion reference/iterator/const_iterator.md
Expand Up @@ -7,7 +7,7 @@
```cpp
namespace std {
template<input_iterator I>
using const_iterator = /*see below*?;
using const_iterator = /*see below*/;
}
```
* input_iterator[link input_iterator.md]
Expand Down
2 changes: 1 addition & 1 deletion reference/iterator/const_sentinel.md
Expand Up @@ -7,7 +7,7 @@
```cpp
namespace std {
template<semiregular S>
using const_sentinel = /*see below*?;
using const_sentinel = /*see below*/;
}
```
* semiregular[link /reference/concepts/semiregular.md]
Expand Down

0 comments on commit 4d8ffbe

Please sign in to comment.