From f08174b5b1655baed54bb5599ac0054d9cbd625a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kelvin=20S=C3=A1nchez?= Date: Fri, 19 Feb 2021 00:14:50 -0400 Subject: [PATCH] fix(learn): Remove unnecessary inline code tag in challenge (#41177) Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> --- .../comparison-with-the-greater-than-or-equal-to-operator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-greater-than-or-equal-to-operator.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-greater-than-or-equal-to-operator.md index 0cb1d1d46a..482906b191 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-greater-than-or-equal-to-operator.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-greater-than-or-equal-to-operator.md @@ -11,7 +11,7 @@ dashedName: comparison-with-the-greater-than-or-equal-to-operator The greater than or equal to operator (`>=`) compares the values of two numbers. If the number to the left is greater than or equal to the number to the right, it returns `true`. Otherwise, it returns `false`. -Like the equality operator, `greater than or equal to` operator will convert data types while comparing. +Like the equality operator, the `>=` will convert data types while comparing. **Examples**