mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 00:01:37 +08:00
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
This commit is contained in:

committed by
GitHub

parent
dbc98d096b
commit
743b3179f7
@ -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
|
||||
*/
|
||||
|
Reference in New Issue
Block a user