Skip to content

Commit 9f67871

Browse files
ErikSchierboomBethanyG
authored andcommitted
string-methods: fix typo
1 parent 5b1ef82 commit 9f67871

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

concepts/string-methods/about.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ There may also be [locale][locale] rules in place for a language or character se
4444
>>> man_in_hat_th = 'ู้ชายในหมวก'
4545
>>> man_in_hat_ru = 'mужчина в шляпе'
4646
>>> man_in_hat_ko = '모자를 쓴 남자'
47-
>>> main_in_hat_en = 'the man in the hat.'
47+
>>> man_in_hat_en = 'the man in the hat.'
4848

4949
>>> man_in_hat_th.title()
5050
'ผู้ชายในหมวก'
@@ -55,7 +55,7 @@ There may also be [locale][locale] rules in place for a language or character se
5555
>>> man_in_hat_ko.title()
5656
'모자를 쓴 남자'
5757

58-
>> main_in_hat_en.title()
58+
>> man_in_hat_en.title()
5959
'The Man In The Hat.'
6060
```
6161

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ There may also be [locale][locale] rules in place for a language or character se
2424
man_in_hat_th = 'ู้ชายในหมวก'
2525
man_in_hat_ru = 'mужчина в шляпе'
2626
man_in_hat_ko = '모자를 쓴 남자'
27-
main_in_hat_en = 'the man in the hat.'
27+
man_in_hat_en = 'the man in the hat.'
2828

2929
>>> man_in_hat_th.title()
3030
'ผู้ชายในหมวก'
@@ -35,7 +35,7 @@ main_in_hat_en = 'the man in the hat.'
3535
>>> man_in_hat_ko.title()
3636
'모자를 쓴 남자'
3737

38-
>> main_in_hat_en.title()
38+
>> man_in_hat_en.title()
3939
'The Man In The Hat.'
4040
```
4141

0 commit comments

Comments
 (0)