Skip to content

Commit

Permalink
fix some typo
Browse files Browse the repository at this point in the history
  • Loading branch information
suomesta committed Nov 5, 2023
1 parent f9a0fdd commit 11b32f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion reference/format/format.md
Expand Up @@ -490,7 +490,6 @@ int main()

### `vector<bool>`を出力する (C++23)
```cpp example
```cpp example
#include <iostream>
#include <format>
#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion reference/format/formatter.md
Expand Up @@ -7,7 +7,7 @@

```cpp
namespace std {
template <class T, class U = char>
template <class T, class charT = char>
struct formatter; // (1) C++20

template <ranges::input_range R, class charT>
Expand Down
4 changes: 2 additions & 2 deletions reference/random/binomial_distribution/op_constructor.md
Expand Up @@ -7,9 +7,9 @@

```cpp
explicit binomial_distribution(IntType t = 1, double p = 0.5); // (1)
binomial_distribution() : binomial_distribution(1) {} // (1)
binomial_distribution() : binomial_distribution(1) {} // (1) C++20

explicit binomial_distribution(IntType t, double p = 0.5); // (2)
explicit binomial_distribution(IntType t, double p = 0.5); // (2) C++20

explicit binomial_distribution(const param_type& parm); // (3)
```
Expand Down

0 comments on commit 11b32f7

Please sign in to comment.