From 98d91dbaf031f5a98792ae24e17798f16729135a Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Fri, 7 Jul 2017 21:48:46 -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 a44185e..fd4ac4d 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -111,7 +111,7 @@ Let's say you want to find out how many hours ahead Sydney is from LA (now). Fi Because we did not specify otherwise, the default behavior is to give us the full precision of `system_clock::time_point`. If you would prefer other behavior (e.g. minutes precision), that is easily accomplished with just a little more work: ```c++ - std::cout << date::format("%H:%M\n", sy.get_local_time() - la.get_local_time()); +std::cout << date::format("%H:%M\n", sy.get_local_time() - la.get_local_time()); ``` And now the output is: