From a591c8b244156bdb0780edd083d875fff61b2df3 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Tue, 19 Mar 2019 22:37:41 -0400 Subject: [PATCH] Updated Examples and Recipes (markdown) --- Examples-and-Recipes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples-and-Recipes.md b/Examples-and-Recipes.md index a551adb..8612c21 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -50,8 +50,8 @@ This couldn't be easier: int main() { - std::cout << date::make_zoned(date::current_zone(), - std::chrono::system_clock::now()) << '\n'; + std::cout << date::zoned_time{date::current_zone(), + std::chrono::system_clock::now()} << '\n'; } ```