summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-10-16 13:52:12 -0700
committerTim Smith <tsmith84@gmail.com>2020-10-16 13:52:12 -0700
commitbfc742da4c0bda2fa17d0cd1fe0e67e67456ccdb (patch)
tree5d158a8a142abcaaf810873e604b3fb2c5356d42
parentefcc5bced71701214b81b66e13520921e7dbe7d0 (diff)
downloadchef-bfc742da4c0bda2fa17d0cd1fe0e67e67456ccdb.tar.gz
Fix bad formatting in a deprecation message
This was all funky Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/lwrp_base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/lwrp_base.rb b/lib/chef/resource/lwrp_base.rb
index a1d2afd791..85d0b1df35 100644
--- a/lib/chef/resource/lwrp_base.rb
+++ b/lib/chef/resource/lwrp_base.rb
@@ -88,7 +88,7 @@ class Chef
# @deprecated
def valid_actions(*args)
- Chef::Log.warn("`valid_actions' is deprecated, please use allowed_actions `instead'!")
+ Chef::Log.warn("`valid_actions` is deprecated, please use `allowed_actions` instead!")
allowed_actions(*args)
end