From 1df2e3c8fbc036112e42df79382da8f7e32a85b4 Mon Sep 17 00:00:00 2001 From: ThesllaDev Date: Thu, 10 Jun 2021 23:58:34 -0300 Subject: [PATCH] Fix: correct redirect id for operators section --- 2-js-basics/1-data-types/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-js-basics/1-data-types/README.md b/2-js-basics/1-data-types/README.md index c1ecefcb..93e7238a 100644 --- a/2-js-basics/1-data-types/README.md +++ b/2-js-basics/1-data-types/README.md @@ -111,7 +111,7 @@ In the previous section, the value of `myVariable` was a number data type. `let myVariable = 123;` -Variables can store all types of numbers, including decimals or negative numbers. Numbers also can be used with arithmetic operators, covered in the [next section](#operators). +Variables can store all types of numbers, including decimals or negative numbers. Numbers also can be used with arithmetic operators, covered in the [next section](#arithmetic-operators). ### Arithmetic Operators @@ -171,7 +171,7 @@ You can achieve your formatting goals with either method, but template literals ### Booleans -Booleans can be only two values: `true` or `false`. Booleans can help make decisions on which lines of code should run when certain conditions are met. In many cases, [operators](#operators) assist with setting the value of a Boolean and you will often notice and write variables being initialized or their values being updated with an operator. +Booleans can be only two values: `true` or `false`. Booleans can help make decisions on which lines of code should run when certain conditions are met. In many cases, [operators](#arithmetic-operators) assist with setting the value of a Boolean and you will often notice and write variables being initialized or their values being updated with an operator. - `let myTrueBool = true` - `let myFalseBool = false`