From d0c00b1286a3860fff76e65f2109fbbef4a3c140 Mon Sep 17 00:00:00 2001 From: HowardHinnant Date: Fri, 4 Sep 2015 11:51:22 -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 73066bb..9d6168b 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -193,7 +193,7 @@ The next step is to find when the day started that is associated with `utc`. To Now the number of microseconds since the start of the day needs to be computed. The start of the day, `dp`, is converted back into the leap-second aware system, and subtracted from the microsecond time point: `utc`. The variable `us` is reused to hold “microseconds since midnight”. Now it is a simple computation to split this into milliseconds since midnight, and microseconds since the last millisecond. - + ### Difference in months between two dates (by [Howard Hinnant](https://github.com/HowardHinnant))