From 8afd42811b8e8a37fdc10dbb2c682c134f344dad Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Tue, 19 Mar 2019 22:38:34 -0400 Subject: [PATCH] Updated Examples and Recipes (markdown) --- Examples-and-Recipes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples-and-Recipes.md b/Examples-and-Recipes.md index 8612c21..0eeba3d 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -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