formula_desc: handle nil first character.

This commit is contained in:
Mike McQuaid 2020-07-07 11:30:24 +01:00
parent f951ea83d4
commit 720a00e68e
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70

View File

@ -87,7 +87,7 @@ module RuboCop
first_word = string_content(node).split.first
unless VALID_LOWERCASE_WORDS.include?(first_word)
first_char = first_word.to_s.chars.first
correction.sub!(/^(['"]?)([a-z])/, "\\1#{first_char.upcase}")
correction.sub!(/^(['"]?)([a-z])/, "\\1#{first_char.upcase}") if first_char
end
correction.sub!(/^(['"]?)an?\s/i, "\\1")
correction.gsub!(/(ommand ?line)/i, "ommand-line")