From f74a276fcdace5291f4cf5fa206115e5718550cb Mon Sep 17 00:00:00 2001 From: Enkai Huang Date: Thu, 7 Mar 2024 03:28:11 +0800 Subject: [PATCH] fix(curriculum): Typo in Building a Password Generator - Step 62 (#54001) --- .../657732654845d8e2fb1217e6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-regular-expressions-by-building-a-password-generator/657732654845d8e2fb1217e6.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-regular-expressions-by-building-a-password-generator/657732654845d8e2fb1217e6.md index d94550adf54..05227f38198 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-regular-expressions-by-building-a-password-generator/657732654845d8e2fb1217e6.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-regular-expressions-by-building-a-password-generator/657732654845d8e2fb1217e6.md @@ -9,7 +9,7 @@ dashedName: step-62 `all()` is a built-in Python function that returns `True` if all the elements inside a given iterable evaluate to `True`. Otherwise, it returns `False`. -You can combine the `all()` function with the list comphehension syntax to make your code more concise. +You can combine the `all()` function with the list comprehension syntax to make your code more concise. Modify your `if` condition by passing the list comprehension you created in the previous step to the `all()` function.