From 74b09d6272354b804dc9fa9f0703c566736cf8f5 Mon Sep 17 00:00:00 2001 From: Chen Yu Date: Wed, 6 May 2020 16:42:49 +0800 Subject: [PATCH] fix: fix the params of Hash#delete in in jsdoc (#4737) Remove the unused param `hash` from the jsdoc of `Hash#delete` --- .internal/Hash.js | 1 - 1 file changed, 1 deletion(-) diff --git a/.internal/Hash.js b/.internal/Hash.js index 88bec5e09..2e277e30c 100644 --- a/.internal/Hash.js +++ b/.internal/Hash.js @@ -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`. */