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))