Updated Examples and Recipes (markdown)

HowardHinnant
2016-03-18 23:40:49 -04:00
parent e40b6110c0
commit ca0d739181

@@ -260,7 +260,7 @@ Like `<date.h>`, you can specify an ISO week date in any of the three orders: y/
Also like `<date.h>`, you can implicitly convert a ISO week date to `day_point`, and vice-versa. For convenience, an alias of `date::day_point` exists as `iso_week::day_point`:
iso_week::day_point dp = iso_date;
iso_week::day_point dp = iso_date;
And recall that `day_point` is just a type alias for a `std::chrono::time_point<std::chrono::system_clock, days>`. So the ISO week date (`iso_week:year_weeknum_weekday`) is immediately interoperable with the entire `<chrono>` library, just like `date::year_month_day` is.