fix: fix the params of Hash#delete in in jsdoc (#4737)

Remove the unused param `hash` from the jsdoc of `Hash#delete`
This commit is contained in:
Chen Yu
2020-05-06 16:42:49 +08:00
committed by GitHub
parent 08110bdcf3
commit 74b09d6272

View File

@@ -35,7 +35,6 @@ class Hash {
* Removes `key` and its value from the hash.
*
* @memberOf Hash
* @param {Object} hash The hash to modify.
* @param {string} key The key of the value to remove.
* @returns {boolean} Returns `true` if the entry was removed, else `false`.
*/