Method: String#each_typo
- Defined in:
- lib/ronin/support/text/typo/core_ext/string.rb
#each_typo(**kwargs) {|typoed| ... } ⇒ Enumerator
Enumerates over every typo mistake for the String.
97 98 99 |
# File 'lib/ronin/support/text/typo/core_ext/string.rb', line 97 def each_typo(**kwargs,&block) Ronin::Support::Text::Typo.each_substitution(self,**kwargs,&block) end |