Update to match Ruby style guide

This commit is contained in:
Mark VanderVoord
2017-09-08 15:37:31 -04:00
parent 7b2ad10c92
commit 05daf95d4e
3 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ class ColourCommandLine
return unless RUBY_PLATFORM =~ /(win|w)32$/
get_std_handle = Win32API.new('kernel32', 'GetStdHandle', ['L'], 'L')
@set_console_txt_attrb =
Win32API.new('kernel32', 'SetConsoleTextAttribute', %w[L N], 'I')
Win32API.new('kernel32', 'SetConsoleTextAttribute', %w(L N), 'I')
@hout = get_std_handle.call(-11)
end