Skip to content

Commit 7786d22

Browse files
committed
Corrected separator misspelling.
1 parent 92378b1 commit 7786d22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

concepts/strings/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ If a `list`, `tuple`, `set` or other collection of individual strings needs to b
206206
>>> separator.join(under_words)
207207
'under ⤴️ undercurrent ⤴️ undersea ⤴️ underpin ⤴️ underdog ⤴️ underlay'
208208

209-
# The seperator can be composed different ways, as long as the result is a string.
209+
# The separator can be composed different ways, as long as the result is a string.
210210
>>> upper_words = ['upper', 'crust', 'case', 'classmen', 'most', 'cut']
211211
>>> separator = ' 🌟 ' + upper_words[0] #this becomes one string, similar to ' ⤴️ under'.
212212
>>> separator.join(upper_words)

exercises/concept/little-sisters-vocab/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ If a `list`, `tuple`, `set` or other collection of individual strings needs to b
8383
>>> separator.join(under_words)
8484
'under ⤴️ undercurrent ⤴️ undersea ⤴️ underpin ⤴️ underdog ⤴️ underlay'
8585

86-
# The seperator can be composed different ways, as long as the result is a string.
86+
# The separator can be composed different ways, as long as the result is a string.
8787
>>> upper_words = ['upper', 'crust', 'case', 'classmen', 'most', 'cut']
8888
>>> separator = ' 🌟 ' + upper_words[0]
8989
>>> separator.join(upper_words)

0 commit comments

Comments
 (0)