From 815672734ee3c151028ecf64dbe18d15d09bcd72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Fern=C3=A1ndez=20Serrata?= <76864299+Rudxain@users.noreply.github.com> Date: Sun, 20 Feb 2022 16:56:17 -0400 Subject: [PATCH] Corrected JSdoc typo The URL in the Wikipedia link had an extra "h" in the URI Scheme (the part that specifies the protocol, usually `https`). I removed the duplicate "h" and made it into a single "h", now the link works --- Maths/AverageMean.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Maths/AverageMean.js b/Maths/AverageMean.js index 8982041ed0..75f7b1b58e 100644 --- a/Maths/AverageMean.js +++ b/Maths/AverageMean.js @@ -3,7 +3,7 @@ * @description This script will find the mean value of a array of numbers. * @param {Integer[]} nums - Array of integer * @return {Integer} - mean of nums. - * @see [Mean](hhttps://en.wikipedia.org/wiki/Mean) + * @see [Mean](https://en.wikipedia.org/wiki/Mean) * @example mean([1, 2, 4, 5]) = 3 * @example mean([10, 40, 100, 20]) = 42.5 */