From 7d87f42e24395ed2dd01d16e7ba61924756d8b33 Mon Sep 17 00:00:00 2001 From: BethanyG Date: Mon, 31 May 2021 17:01:29 -0700 Subject: [PATCH] Typo Correction line 158 --- exercises/concept/little-sisters-vocab/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/little-sisters-vocab/.docs/introduction.md b/exercises/concept/little-sisters-vocab/.docs/introduction.md index 1a5a4853..deffd2a3 100644 --- a/exercises/concept/little-sisters-vocab/.docs/introduction.md +++ b/exercises/concept/little-sisters-vocab/.docs/introduction.md @@ -155,7 +155,7 @@ Using `.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 `.split()` can be more than one character. The whole string will be used for matching.