summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Dodge <mikedodge04@fb.com>2015-03-26 18:22:28 -0700
committerMike Dodge <mikedodge04@fb.com>2015-03-26 18:22:28 -0700
commit04bd76a051270d529333c943e27fc2154378954f (patch)
treec1320532064215ea64e5f22332d815a1ba2a79f3
parent73fd4949b2ab478e377bb352f90172c8a060e36e (diff)
downloadchef-04bd76a051270d529333c943e27fc2154378954f.tar.gz
fix some typos in comments
-rw-r--r--lib/chef/provider/service/macosx.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/chef/provider/service/macosx.rb b/lib/chef/provider/service/macosx.rb
index fbc16d6d53..4c40c5c865 100644
--- a/lib/chef/provider/service/macosx.rb
+++ b/lib/chef/provider/service/macosx.rb
@@ -70,7 +70,6 @@ class Chef
end
def define_resource_requirements
- #super
requirements.assert(:reload) do |a|
a.failure_message Chef::Exceptions::UnsupportedAction, "#{self.to_s} does not support :reload"
end
@@ -88,7 +87,7 @@ class Chef
requirements.assert(:all_actions) do |a|
a.assertion { @plist_size > 0 }
- # No failrue here in original code - so we also will not
+ # No failure here in original code - so we also will not
# fail. Instead warn that the service is potentially missing
a.whyrun "Assuming that the service would have been previously installed and is currently disabled." do
@current_resource.enabled(false)