fix(curriculum): typo in string manipulation python project (#54695)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
This commit is contained in:
William Spanfelner
2024-05-10 13:14:26 +03:00
committed by GitHub
parent ab2f5a3004
commit 074172e264
@@ -7,7 +7,7 @@ dashedName: step-80
# --description--
The `.isalpha()` method returns `True` if all the character of the string on which it is called are letters. For example, the code below returns `True`:
The `.isalpha()` method returns `True` if all of the characters of the string on which it is called are letters. For example, the code below returns `True`:
```py
'freeCodeCamp'.isalpha()