Skip to content

Commit 0e484c3

Browse files
authored
fix(curriculum): format or operator correctly in python review basics lesson (freeCodeCamp#66190)
1 parent 199379b commit 0e484c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ else:
803803
print('You are not eligible to vote')
804804
```
805805

806-
- **`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:
806+
- **`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:
807807

808808
```py
809809
age = 19

0 commit comments

Comments
 (0)