From 743b3179f798905f937af554d4a3d9a41f1b20a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Fern=C3=A1ndez=20Serrata?= <76864299+Rudxain@users.noreply.github.com> Date: Mon, 21 Feb 2022 06:58:40 -0400 Subject: [PATCH] merge: Corrected JSdoc typo (#898) 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 8982041ed..75f7b1b58 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 */