diff options
author | Tor Magnus Rakvåg <tm@intility.no> | 2018-02-06 17:05:19 +0100 |
---|---|---|
committer | Tor Magnus Rakvåg <tm@intility.no> | 2018-02-06 17:05:19 +0100 |
commit | 81dcf598634bd65eada7f9360e2c7a23944d10ef (patch) | |
tree | ad01282208108b10a07735c11319eb42f7b213ac | |
parent | 8599d3ed2f139b2b474fcfb09d3af5708dcc12fa (diff) | |
download | chef-81dcf598634bd65eada7f9360e2c7a23944d10ef.tar.gz |
plural to singular, consistent use of contractions
Signed-off-by: Tor Magnus Rakvåg <tm@intility.no>
-rw-r--r-- | lib/chef/provider/windows_task.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/provider/windows_task.rb b/lib/chef/provider/windows_task.rb index 8420210a57..e4e8249a6c 100644 --- a/lib/chef/provider/windows_task.rb +++ b/lib/chef/provider/windows_task.rb @@ -137,7 +137,7 @@ class Chef end end else - Chef::Log.warn "#{new_resource} task doesn't exists - nothing to do" + Chef::Log.warn "#{new_resource} task doesn't exist - nothing to do" end end @@ -149,7 +149,7 @@ class Chef run_schtasks "DELETE", "F" => "" end else - Chef::Log.warn "#{new_resource} task doesn't exists - nothing to do" + Chef::Log.warn "#{new_resource} task doesn't exist - nothing to do" end end @@ -180,7 +180,7 @@ class Chef end else Chef::Log.fatal "#{new_resource} task doesn't exist - nothing to do" - raise Errno::ENOENT, "#{new_resource}: task does not exist, cannot enable" + raise Errno::ENOENT, "#{new_resource}: task doesn't exist, cannot enable" end end |