From 07727ee09388b23c01bc6275a69d6200a963e669 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Wed, 22 Jun 2022 11:45:52 -0300 Subject: [PATCH] "and" instead of "/" just to match previous line --- 1-js/05-data-types/02-number/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/02-number/article.md b/1-js/05-data-types/02-number/article.md index 98434f14..53a4bff6 100644 --- a/1-js/05-data-types/02-number/article.md +++ b/1-js/05-data-types/02-number/article.md @@ -403,7 +403,7 @@ A few examples: ``` `Math.max(a, b, c...)` and `Math.min(a, b, c...)` -: Returns the greatest/smallest from the arbitrary number of arguments. +: Returns the greatest and smallest from the arbitrary number of arguments. ```js run alert( Math.max(3, 5, -10, 0, 1) ); // 5