summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2014-11-21 10:25:14 -0800
committerClaire McQuin <claire@getchef.com>2014-11-21 10:25:14 -0800
commitd62f95da60e8839a6d6706a7d117457ceb0a735c (patch)
tree1aa4508c7790937985a89faa0d8b5ed1ff84c2a2 /lib
parente66edf5585aa25627bb2e8560d85eafa8c616e58 (diff)
downloadchef-d62f95da60e8839a6d6706a7d117457ceb0a735c.tar.gz
Fix typo
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/dsl/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/dsl/audit.rb b/lib/chef/dsl/audit.rb
index 44c0c56fac..72a1752df2 100644
--- a/lib/chef/dsl/audit.rb
+++ b/lib/chef/dsl/audit.rb
@@ -27,7 +27,7 @@ class Chef
name = args[0]
raise AuditNameMissing if name.nil? || name.empty?
- run_context.controls[:name] = { :args => args, :block => block }
+ run_context.controls[name] = { :args => args, :block => block }
end
end