diff options
author | Claire McQuin <claire@getchef.com> | 2014-11-21 10:25:14 -0800 |
---|---|---|
committer | Claire McQuin <claire@getchef.com> | 2014-11-21 10:25:14 -0800 |
commit | d62f95da60e8839a6d6706a7d117457ceb0a735c (patch) | |
tree | 1aa4508c7790937985a89faa0d8b5ed1ff84c2a2 /lib/chef/dsl | |
parent | e66edf5585aa25627bb2e8560d85eafa8c616e58 (diff) | |
download | chef-d62f95da60e8839a6d6706a7d117457ceb0a735c.tar.gz |
Fix typo
Diffstat (limited to 'lib/chef/dsl')
-rw-r--r-- | lib/chef/dsl/audit.rb | 2 |
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 |