From 0e484c3cd767b91816aaddd9e08015cf5b9f45dd Mon Sep 17 00:00:00 2001 From: renyap <72970074+renyapeter@users.noreply.github.com> Date: Tue, 3 Mar 2026 01:03:05 +0530 Subject: [PATCH] fix(curriculum): format `or` operator correctly in python review basics lesson (#66190) --- .../blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md b/curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md index ac2eaae095d..1e514bd81fc 100644 --- a/curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md +++ b/curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md @@ -803,7 +803,7 @@ else: print('You are not eligible to vote') ``` -- **`or` Operator**: This operator returns the first operand if it is truthy, otherwise, it returns the second operand. An or expression results in a truthy value if at least one operand is truthy. Here is an example: +- **`or` Operator**: This operator returns the first operand if it is truthy, otherwise, it returns the second operand. An `or` expression results in a truthy value if at least one operand is truthy. Here is an example: ```py age = 19