From 074172e264cc7353c252e029657014f01be837fb Mon Sep 17 00:00:00 2001 From: William Spanfelner <102249249+WilliamSpanfelner@users.noreply.github.com> Date: Fri, 10 May 2024 13:14:26 +0300 Subject: [PATCH] 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> --- .../6555201d9b7fc917399f9f0b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/6555201d9b7fc917399f9f0b.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/6555201d9b7fc917399f9f0b.md index b51599724ea..2cbbb0a082a 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/6555201d9b7fc917399f9f0b.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/6555201d9b7fc917399f9f0b.md @@ -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()