From 187850e9665c6d4f53477aaa5f36d93b55dc1d43 Mon Sep 17 00:00:00 2001 From: Marcos Wright-Kuhns Date: Wed, 26 May 2021 13:00:46 -0700 Subject: [PATCH] Improve wording in time_static comment Co-authored-by: Tyurina --- website/docs/r/ruleset_rule.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/r/ruleset_rule.html.markdown b/website/docs/r/ruleset_rule.html.markdown index 180d80e0e..6d6201a87 100644 --- a/website/docs/r/ruleset_rule.html.markdown +++ b/website/docs/r/ruleset_rule.html.markdown @@ -24,9 +24,9 @@ resource "pagerduty_ruleset" "foo" { } } -# We want our pagerduty_ruleset_rule.foo rule, defined below, -# to repeat daily from 9:30am - 11:30am using the America/New_York timezone -# so we need a time_static instance to represent 9:30am on an arbitrary date in that timezone. +# The pagerduty_ruleset_rule.foo rule defined below +# repeats daily from 9:30am - 11:30am using the America/New_York timezone. +# Thus it requires a time_static instance to represent 9:30am on an arbitrary date in that timezone. # April 4th, 2019 was EDT (UTC-4) https://www.timeanddate.com/worldclock/converter.html?iso=20190411T133000&p1=179 resource "time_static" "eastern_time_at_0930" { rfc3339 = "2019-04-11T09:30:00-04:00"