Skip to content

Commit 743b317

Browse files
authored
merge: Corrected JSdoc typo (TheAlgorithms#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
1 parent dbc98d0 commit 743b317

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Maths/AverageMean.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @description This script will find the mean value of a array of numbers.
44
* @param {Integer[]} nums - Array of integer
55
* @return {Integer} - mean of nums.
6-
* @see [Mean](hhttps://en.wikipedia.org/wiki/Mean)
6+
* @see [Mean](https://en.wikipedia.org/wiki/Mean)
77
* @example mean([1, 2, 4, 5]) = 3
88
* @example mean([10, 40, 100, 20]) = 42.5
99
*/

0 commit comments

Comments
 (0)