diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-09-17 08:54:20 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-09-17 08:54:20 -0700 |
commit | 6c002fc316f6931e4b848765a28b316cd459cb33 (patch) | |
tree | f8d123a21c911a2532e3c8c6ed03f0bd5ddb8265 | |
parent | d249840c81b57ad0033f8dc17f3b036707092ed2 (diff) | |
download | chef-6c002fc316f6931e4b848765a28b316cd459cb33.tar.gz |
Fix timezone example format
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | lib/chef/resource/timezone.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/timezone.rb b/lib/chef/resource/timezone.rb index 489b94b0b3..f879c9577a 100644 --- a/lib/chef/resource/timezone.rb +++ b/lib/chef/resource/timezone.rb @@ -38,7 +38,7 @@ class Chef **Set the timezone to America/Los_Angeles with a friendly resource name on Linux/macOS** ```ruby - timezone 'Set the host's timezone to America/Los_Angeles' do + timezone "Set the host's timezone to America/Los_Angeles" do timezone 'America/Los_Angeles' end ``` @@ -46,7 +46,7 @@ class Chef **Set the timezone to PST with a friendly resource name on Windows** ```ruby - timezone 'Set the host's timezone to PST' do + timezone "Set the host's timezone to PST" do timezone 'Pacific Standard time' end ``` |