Updated Examples and Recipes (markdown)

Howard Hinnant
2019-03-19 22:38:34 -04:00
parent a591c8b244
commit 8afd42811b

@@ -55,7 +55,7 @@ main()
}
```
`system_clock::now()` of course gets the current time. It is a de facto standard that this current time is measured in terms of [Unix Time](https://en.wikipedia.org/wiki/Unix_time) which is a very close approximation to UTC. `make_zoned` pairs the current UTC time with the computer's current local time zone, producing a `zoned_time`. The `zoned_time` has a streaming operator so you can easily print it out:
`system_clock::now()` of course gets the current time. It is a de facto standard that this current time is measured in terms of [Unix Time](https://en.wikipedia.org/wiki/Unix_time) which is a very close approximation to UTC. `zoned_time` pairs the current UTC time with the computer's current local time zone. The `zoned_time` has a streaming operator so you can easily print it out:
```c++
2016-07-05 23:01:05.818378 EDT