Updated Examples and Recipes (markdown)

Howard Hinnant
2019-03-19 22:40:16 -04:00
parent 8afd42811b
commit f862bffffb

@@ -76,8 +76,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::zoned_time{"Asia/Shanghai",
std::chrono::system_clock::now()} << '\n';
}
```