Skip to content

Commit 3f46d07

Browse files
authored
Add consistency to comparison operators list
Add consistency to the comparison operators list by: * Putting `<` and `>` on their own lines just as `<=` and `>=` are on their own lines * Adding colon at each definition (only some terms had this colon)
1 parent 64fb4bf commit 3f46d07

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

episodes/03-index-slice-subset.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -508,9 +508,10 @@ Experiment with selecting various subsets of the "surveys" data.
508508

509509
- Equals: `==`
510510
- Not equals: `!=`
511-
- Greater than, less than: `>` or `<`
512-
- Greater than or equal to `>=`
513-
- Less than or equal to `<=`
511+
- Greater than: `>`
512+
- Less than: `<`
513+
- Greater than or equal to: `>=`
514+
- Less than or equal to: `<=`
514515

515516
::::::::::::::::::::::::::::::::::::::: challenge
516517

0 commit comments

Comments
 (0)