From 3ea1e9e20b7cc33f46a0fa73fff1838ffdd0ff10 Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Mon, 21 Jan 2019 10:05:14 -0300 Subject: [PATCH] typo --- 1-js/05-data-types/02-number/8-random-min-max/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/02-number/8-random-min-max/solution.md b/1-js/05-data-types/02-number/8-random-min-max/solution.md index 348f9e34..8736c3d5 100644 --- a/1-js/05-data-types/02-number/8-random-min-max/solution.md +++ b/1-js/05-data-types/02-number/8-random-min-max/solution.md @@ -2,7 +2,7 @@ We need to "map" all values from the interval 0..1 into values from `min` to `ma That can be done in two stages: -1. If we multiply a random number from 0..1 by `max-min`, then it the interval of possible values increases `0..1` to `0..max-min`. +1. If we multiply a random number from 0..1 by `max-min`, then the interval of possible values increases `0..1` to `0..max-min`. 2. Now if we add `min`, the possible interval becomes from `min` to `max`. The function: