Skip to content

Commit

Permalink
small improvemenmts in samples
Browse files Browse the repository at this point in the history
  • Loading branch information
suomesta committed Oct 14, 2023
1 parent bd9f4a4 commit 1174ad4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion reference/chrono/time_point/op_constructor.md
Expand Up @@ -53,7 +53,7 @@ int main()
* time_since_epoch()[link time_since_epoch.md]
* count()[link /reference/chrono/duration/count.md]

### 出力
### 出力例
```
0
3000000
Expand Down
2 changes: 1 addition & 1 deletion reference/type_traits/void_t.md
Expand Up @@ -78,7 +78,7 @@ int main()
std::cout << is_equality_comparable<NonComparable>::value << std::endl;
}
```
* std::void[color ff0000]
* std::void_t[color ff0000]
* std::declval[link /reference/utility/declval.md]
### 出力
Expand Down
4 changes: 2 additions & 2 deletions reference/typeinfo/type_info/op_not_equal.md
Expand Up @@ -34,13 +34,13 @@ int main()
const std::type_info& b = typeid(3);

std::cout << std::boolalpha;
std::cout << "difference type? " << (a != b) << std::endl;
std::cout << "different type? " << (a != b) << std::endl;
}
```

### 出力
```
difference type? false
different type? false
```

## 参照
Expand Down

0 comments on commit 1174ad4

Please sign in to comment.