summaryrefslogtreecommitdiff
path: root/lib/chef/resource/habitat_install.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/habitat_install.rb')
-rw-r--r--lib/chef/resource/habitat_install.rb34
1 files changed, 17 insertions, 17 deletions
diff --git a/lib/chef/resource/habitat_install.rb b/lib/chef/resource/habitat_install.rb
index 86d979a35a..841b8150a8 100644
--- a/lib/chef/resource/habitat_install.rb
+++ b/lib/chef/resource/habitat_install.rb
@@ -25,28 +25,28 @@ class Chef
description "Use the **habitat_install** resource to install Chef Habitat."
introduced "17.3"
examples <<~DOC
- **Installation Without a Resource Name**
+ **Installation Without a Resource Name**
- ```ruby
- habitat_install
- ```
+ ```ruby
+ habitat_install
+ ```
- **Installation specifying a habitat builder URL**
+ **Installation specifying a habitat builder URL**
- ```ruby
- habitat_install 'install habitat' do
- bldr_url 'http://localhost'
- end
- ```
+ ```ruby
+ habitat_install 'install habitat' do
+ bldr_url 'http://localhost'
+ end
+ ```
- **Installation specifying version and habitat builder URL**
+ **Installation specifying version and habitat builder URL**
- ```ruby
- habitat_install 'install habitat' do
- bldr_url 'http://localhost'
- hab_version '1.5.50'
- end
- ```
+ ```ruby
+ habitat_install 'install habitat' do
+ bldr_url 'http://localhost'
+ hab_version '1.5.50'
+ end
+ ```
DOC
property :name, String, default: "install habitat",