From ca0d739181d388202b0b628c1cbe9ba16eff9e46 Mon Sep 17 00:00:00 2001 From: HowardHinnant Date: Fri, 18 Mar 2016 23:40:49 -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 36af6c3..d60ba72 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -260,7 +260,7 @@ Like ``, you can specify an ISO week date in any of the three orders: y/ Also like ``, 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`. So the ISO week date (`iso_week:year_weeknum_weekday`) is immediately interoperable with the entire `` library, just like `date::year_month_day` is.