Class: I18nLinter::Rules::Words

Inherits:
Object
  • Object
show all
Defined in:
lib/i18n_linter/rules/words.rb

Instance Method Summary collapse

Instance Method Details

#check(string) ⇒ Object



6
7
8
# File 'lib/i18n_linter/rules/words.rb', line 6

def check(string)
  /^[A-Z].*[a-z]/ =~ string.strip
end