Skip to content

Commit

Permalink
Land #3449, constant spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Tod Beardsley committed Jun 12, 2014
2 parents 62a4991 + 7f2b173 commit 86e4eaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/msftidy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
require 'time'

CHECK_OLD_RUBIES = !!ENV['MSF_CHECK_OLD_RUBIES']
SUPRESS_INFO_MESSAGES = !!ENV['MSF_SUPPRESS_INFO_MESSAGES']
SUPPRESS_INFO_MESSAGES = !!ENV['MSF_SUPPRESS_INFO_MESSAGES']

if CHECK_OLD_RUBIES
require 'rvm'
Expand Down Expand Up @@ -92,7 +92,7 @@ def fixed(txt, line=0)
# Display an info message. Info messages do not alter the exit status.
#
def info(txt, line=0)
return if SUPRESS_INFO_MESSAGES
return if SUPPRESS_INFO_MESSAGES
line_msg = (line>0) ? ":#{line}" : ''
puts "#{@full_filepath}#{line_msg} - [#{'INFO'.cyan}] #{cleanup_text(txt)}"
end
Expand Down

0 comments on commit 86e4eaa

Please sign in to comment.