diff options
author | catch <catch@35733.no-reply.drupal.org> | 2022-11-28 11:30:17 +0000 |
---|---|---|
committer | catch <catch@35733.no-reply.drupal.org> | 2022-11-28 11:34:18 +0000 |
commit | 8c2256b7fe8a3e12372fdc8cc47240f98cecf5c2 (patch) | |
tree | 7a452b289dbe93708c23917eaad82eb63bd56983 /core/misc/autocomplete.js | |
parent | 594a227ea75eaf754026a012a363ccc493c16583 (diff) | |
download | drupal-8c2256b7fe8a3e12372fdc8cc47240f98cecf5c2.tar.gz drupal-8c2256b7fe8a3e12372fdc8cc47240f98cecf5c2.zip |
Issue #2894269 by droplet, Akram Khan, _pratik_, dylf, nod_, Cottser: `bool` in JSDoc should be `boolean`
Diffstat (limited to 'core/misc/autocomplete.js')
-rw-r--r-- | core/misc/autocomplete.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/misc/autocomplete.js b/core/misc/autocomplete.js index 56565bf58a3..8495f7e45b3 100644 --- a/core/misc/autocomplete.js +++ b/core/misc/autocomplete.js @@ -67,7 +67,7 @@ * @param {object} event * The event triggered. * - * @return {bool} + * @return {boolean} * Whether to perform a search or not. */ function searchHandler(event) { @@ -154,7 +154,7 @@ /** * Handles an autocompletefocus event. * - * @return {bool} + * @return {boolean} * Always returns false. */ function focusHandler() { @@ -169,7 +169,7 @@ * @param {object} ui * The jQuery UI settings object. * - * @return {bool} + * @return {boolean} * Returns false to indicate the event status. */ function selectHandler(event, ui) { |