Skip to content

Commit fed01a8

Browse files
authored
Extra not
The sentence refers to x > 5, I think there is an extra "not"
1 parent 220aaec commit fed01a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_episodes/03-index-slice-subset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ x == 5
459459
{: .language-python}
460460
461461
When we ask Python what the value of `x > 5` is, we get `False`. This is
462-
because the condition, `x` is not greater than 5, is not met since `x` is equal
462+
because the condition, `x` is greater than 5, is not met since `x` is equal
463463
to 5.
464464
465465
To create a boolean mask:

0 commit comments

Comments
 (0)