From dfddf12dbe6e7207d7b61ba679a1a74f41230fe7 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Tue, 13 Nov 2018 10:57:49 -0500 Subject: [PATCH] Updated Examples and Recipes (markdown) --- Examples-and-Recipes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples-and-Recipes.md b/Examples-and-Recipes.md index 4b23b46..a551adb 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -26,7 +26,7 @@ This page contains examples and recipes contributed by community members. Feel f - [What is the epoch difference between Unix Time and GPS time?](#unix_gps_epoch_diff) - [How to convert to/from C++ Builder's TDate and TDateTime](#TDate) - [How to convert to/from QDate](#QDate) -- [How to convert to/from Windows' FILETIME](#FILETIME) +- [How to convert to/from Windows' FILETIME](#fILETIME) - [Print out a compact calendar for the year](#calendar) - [Parsing unambiguous date time inside daylight transition](#parse_daylight_transition) - [`microfortnights`?! Are you serious?](#microfortnights) @@ -1686,7 +1686,7 @@ to_QDate(date::sys_days sd) These work by simply adjusting the epoch of these two types. - + ### How to convert between Windows' `FILETIME` and `system_clock` (by [Billy O'Neal](https://github.com/BillyONeal))