Typo Correction line 158

This commit is contained in:
BethanyG
2021-05-31 17:01:29 -07:00
parent 06e16d5874
commit 7d87f42e24

View File

@@ -155,7 +155,7 @@ Using `<str>.split()` without any arguments will split the string on whitespace.
>>> cat_words = "feline, four-footed, ferocious, furry"
>>> cat_words.split(',')
...
['feline, four-footed, ferocious, furry']
['feline', 'four-footed', 'ferocious', 'furry']
```
Seperators for `<str>.split()` can be more than one character. The whole string will be used for matching.