diff options
author | Emilio Tagua <miloops@gmail.com> | 2010-09-27 15:18:35 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-09-27 16:43:17 -0300 |
commit | 1ab2ab07b5e7c4031c014175887e9f20b8f60a4c (patch) | |
tree | c2cc5c3dac7623044599b25b4b3239a5b6ad6142 /actionpack/lib/action_controller/vendor/html-scanner/html | |
parent | 2f326b7f27349b933fe617d83b3f80c6573ce5d8 (diff) | |
download | rails-1ab2ab07b5e7c4031c014175887e9f20b8f60a4c.tar.gz rails-1ab2ab07b5e7c4031c014175887e9f20b8f60a4c.tar.bz2 rails-1ab2ab07b5e7c4031c014175887e9f20b8f60a4c.zip |
Remove more warnings shadowing outer local variable.
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'actionpack/lib/action_controller/vendor/html-scanner/html')
-rw-r--r-- | actionpack/lib/action_controller/vendor/html-scanner/html/node.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb b/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb index c82324dee6..22b3243104 100644 --- a/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +++ b/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb @@ -18,14 +18,14 @@ module HTML #:nodoc: hash[k] = Conditions.new(v) when :children hash[k] = v = keys_to_symbols(v) - v.each do |key,v2| + v.each do |key,value| case key when :count, :greater_than, :less_than # keys are valid, and require no further processing when :only - v[key] = Conditions.new(v2) + v[key] = Conditions.new(value) else - raise "illegal key #{k.inspect} => #{v2.inspect}" + raise "illegal key #{key.inspect} => #{value.inspect}" end end else |