summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Kantrowitz <noah@coderanger.net>2017-04-21 14:41:09 -0700
committerGitHub <noreply@github.com>2017-04-21 14:41:09 -0700
commit99c4be940b17f77961e1f97ece98d46366c57456 (patch)
treed1c75cb061d8b7b3bbb408a2660d5c26eb2def86
parent1cdcff04eb1f0681a778a4e5197865f81fe8abf0 (diff)
parent248950845e09996a6f2efd1b0af5a8473fda7452 (diff)
downloadchef-99c4be940b17f77961e1f97ece98d46366c57456.tar.gz
Merge pull request #6080 from bernardoVale/fix-execute-typo
Fixing small typo
-rw-r--r--lib/chef/provider/execute.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/execute.rb b/lib/chef/provider/execute.rb
index 101d7c4c06..e227528918 100644
--- a/lib/chef/provider/execute.rb
+++ b/lib/chef/provider/execute.rb
@@ -37,7 +37,7 @@ class Chef
def define_resource_requirements
if creates && creates_relative? && !cwd
# FIXME? move this onto the resource?
- raise Chef::Exceptions::Execute, "Please either specify a full path for the creates attribute, or specify a cwd propoerty to the #{new_resource} resource"
+ raise Chef::Exceptions::Execute, "Please either specify a full path for the creates attribute, or specify a cwd property to the #{new_resource} resource"
end
end