summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-06-04 17:26:31 -0700
committerPete Higgins <pete@peterhiggins.org>2020-06-04 17:53:40 -0700
commit5541a1f148a04be1bc3b2f0942743d161b4440b9 (patch)
treee765cfc3411b0eda48b00e8329be026a8c21b3c9 /lib
parent3c766ead45d552dfea7eb1e86e227084116e2ff6 (diff)
downloadchef-5541a1f148a04be1bc3b2f0942743d161b4440b9.tar.gz
Fix some spelling violations.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/resource/execute.rb2
-rw-r--r--lib/chef/resource/homebrew_package.rb2
-rw-r--r--lib/chef/resource/remote_file.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/resource/execute.rb b/lib/chef/resource/execute.rb
index 1fc8922e71..b3c182ddd8 100644
--- a/lib/chef/resource/execute.rb
+++ b/lib/chef/resource/execute.rb
@@ -74,7 +74,7 @@ class Chef
creates '/var/lib/slapd/uid.bdb'
action :run
- environment ({'HOME' => '/home/myhome'})
+ environment ({'HOME' => '/home/my_home'})
end
```
diff --git a/lib/chef/resource/homebrew_package.rb b/lib/chef/resource/homebrew_package.rb
index c3b34395f6..fef0561e38 100644
--- a/lib/chef/resource/homebrew_package.rb
+++ b/lib/chef/resource/homebrew_package.rb
@@ -29,7 +29,7 @@ class Chef
provides :homebrew_package
provides :package, os: "darwin"
- description "Use the **homebrew_package** resource to manage packages for the macOS platform. Note: Starting with #{Chef::Dist::PRODUCT} 16 the homebrew resource now accepts an array of packages for isntalling multiple packages at once."
+ description "Use the **homebrew_package** resource to manage packages for the macOS platform. Note: Starting with #{Chef::Dist::PRODUCT} 16 the homebrew resource now accepts an array of packages for installing multiple packages at once."
introduced "12.0"
examples <<~DOC
**Install a package**:
diff --git a/lib/chef/resource/remote_file.rb b/lib/chef/resource/remote_file.rb
index 1641855ebb..d183fed64f 100644
--- a/lib/chef/resource/remote_file.rb
+++ b/lib/chef/resource/remote_file.rb
@@ -102,7 +102,7 @@ class Chef
property :ssl_verify_mode, Symbol, equal_to: %i{verify_none verify_peer},
introduced: "16.2",
- description: "Optional property to override SSL policy. If not specified, uses the SSL polify from `config.rb`."
+ description: "Optional property to override SSL policy. If not specified, uses the SSL policy from `config.rb`."
property :remote_user, String,
introduced: "13.4",