From ac2fe62eef5a64efed77718e8b7d41efc3d7b6e9 Mon Sep 17 00:00:00 2001 From: "Innocent V.I" <44393182+randomvi@users.noreply.github.com> Date: Fri, 9 Jul 2021 16:02:47 +0200 Subject: [PATCH] fixed create-decimal-numbers-with-javascript challenge external link (#42801) --- .../basic-javascript/create-decimal-numbers-with-javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript.md index 49ca86fc2cc..dcfb9f5400d 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript.md @@ -11,7 +11,7 @@ dashedName: create-decimal-numbers-with-javascript We can store decimal numbers in variables too. Decimal numbers are sometimes referred to as floating point numbers or floats. -**Note:** Not all real numbers can accurately be represented in floating point. This can lead to rounding errors. [Details Here](https://en.wikipedia.org/wiki/Floating_point#Accuracy_problems). +**Note:** Not all real numbers can accurately be represented in floating point. This can lead to rounding errors. [Details Here](https://en.wikipedia.org/wiki/Floating-point_arithmetic#Accuracy_problems). # --instructions--