Skip to content

Commit d10b38d

Browse files
authored
Correct is clock struct example
1 parent c009e1d commit d10b38d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/standard-library/is-clock-struct.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,13 @@ The following code works because `is_clock`, derives from `Cpp17UnaryTypeTrait`,
5050
#include <iostream>
5151
#include <chrono>
5252

53-
using namespace `std::chrono`;
53+
using namespace std::chrono;
5454

5555
int main()
5656
{
5757
is_clock<system_clock> ic;
5858

5959
std::cout << std::boolalpha << ic.value << ", " << ic() << ", " << (bool)ic;
60-
return 0;
6160
}
6261
```
6362

0 commit comments

Comments
 (0)