From 3f46d072a62ce963d3ec54d6b6ce6b261c09887b Mon Sep 17 00:00:00 2001 From: maneesha <829690+maneesha@users.noreply.github.com> Date: Wed, 21 Feb 2024 10:05:47 -0500 Subject: [PATCH] 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) --- episodes/03-index-slice-subset.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/episodes/03-index-slice-subset.md b/episodes/03-index-slice-subset.md index 05ee5d5ea..664d7e314 100644 --- a/episodes/03-index-slice-subset.md +++ b/episodes/03-index-slice-subset.md @@ -508,9 +508,10 @@ Experiment with selecting various subsets of the "surveys" data. - Equals: `==` - Not equals: `!=` -- Greater than, less than: `>` or `<` -- Greater than or equal to `>=` -- Less than or equal to `<=` +- Greater than: `>` +- Less than: `<` +- Greater than or equal to: `>=` +- Less than or equal to: `<=` ::::::::::::::::::::::::::::::::::::::: challenge