From 2985794cd3da74ebaa9d7fedb5849e396e70f7f5 Mon Sep 17 00:00:00 2001 From: Jeff Axelrod Date: Mon, 12 Feb 2024 01:03:02 -0600 Subject: [PATCH] Update tod.markdown, correct daylight saving time name. (#31370) https://twitter.com/APStylebook/status/442444274794516480 --- source/_integrations/tod.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/_integrations/tod.markdown b/source/_integrations/tod.markdown index caa1cee5830..d7a193c03b3 100644 --- a/source/_integrations/tod.markdown +++ b/source/_integrations/tod.markdown @@ -99,7 +99,7 @@ binary_sensor: In the above example, the next day `sunrise` is calculated as a time range end. -## Daylight Savings Time Handling +## Daylight Saving Time Handling The ToD sensor handles the following cases where the sensor interval: - does not exist at all @@ -111,21 +111,21 @@ To help understand all 3 cases, actual examples are provided below. ### Case 1: Sensor Interval Does Not Exist Let's make the following assumptions: -- Daylight Savings starts at 2am +- Daylight Saving starts at 2am - On the DST day, the ToD sensor interval is from non-existent 2:30am to non-existent 2:40am. In this case, the ToD sensor will not trigger since the 2:30am-2:40am interval does not exist on the day when time jumps from 2am to 3am. However, on the following day, the sensor resumed operating normally. ### Case 2: Sensor End Time Does Not Exist -- Daylight Savings starts at 2am +- Daylight Saving starts at 2am - On the DST day, the ToD sensor interval is from 1:50am to non-existent 2:10am. In this case, the ToD sensor will last 10 minutes starting at 1:50am and stop at 3am (the 2am-3am time is jumped over and does not exist). ### Case 3: Sensor Start Time Does Not Exist -- Daylight Savings starts at 2am +- Daylight Saving starts at 2am - On the DST day, the ToD sensor interval is from non-existent 2:50am to 3:10am. In this case, the ToD sensor will last 10 minutes, starting at 3:00am and stopping at 3:10am (the 2am-3am time is jumped over and does not exist).