From 8665f87cbee86fa74ad3ed460ce08774c77efbb2 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Fri, 7 Jul 2017 21:42:19 -0400 Subject: [PATCH] Updated Examples and Recipes (markdown) --- Examples-and-Recipes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Examples-and-Recipes.md b/Examples-and-Recipes.md index da5b8a1..bae905b 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -72,7 +72,8 @@ If you need to find out the current time where you _aren't_, then that is a simp int main() { - std::cout << date::make_zoned("Asia/Shanghai", std::chrono::system_clock::now()) << '\n'; + std::cout << date::make_zoned("Asia/Shanghai", + std::chrono::system_clock::now()) << '\n'; } ```