diff options
author | Ralph Amissah <ralph@amissah.com> | 2011-03-01 20:43:35 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2011-03-01 20:43:35 -0500 |
commit | f2ab439c41468ba64c8658bf1d17f802e906857c (patch) | |
tree | 182517aa40b909725ab5b98ee95ab4860dc7e342 /lib/sisu/v3/html_tune.rb | |
parent | v3: ruby 1.9 hash symbol syntax adopted (diff) |
v3: space between each and opening curly brace e.g. "x.each {|y| p y}"
Diffstat (limited to 'lib/sisu/v3/html_tune.rb')
-rw-r--r-- | lib/sisu/v3/html_tune.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sisu/v3/html_tune.rb b/lib/sisu/v3/html_tune.rb index c32fbbd1..18b4576b 100644 --- a/lib/sisu/v3/html_tune.rb +++ b/lib/sisu/v3/html_tune.rb @@ -82,7 +82,7 @@ module SiSU_HTML_Tune def hard_output @filename_tune=@file.write_file_processing.html_tune data=[] - @data.each{|x| x.obj.strip; data << x if not x.obj.empty?} #1.9 array? + @data.each {|x| x.obj.strip; data << x if not x.obj.empty?} #1.9 array? data.each do |dob| @filename_tune.puts dob, "\n" end |