Updated Examples and Recipes (markdown)

Howard Hinnant
2017-07-07 21:42:19 -04:00
parent 62c9c51be1
commit 8665f87cbe

@@ -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';
}
```