def fix_spelling(name) if(name = 'twittr') name = 'twitter' else fix_spelling(name) end return 'name' end