Merge pull request #7476 from sandersn/fix-template-tag-syntax

Fix template tag syntax
This commit is contained in:
Tobias Koppers 2018-06-05 10:14:41 +02:00 committed by GitHub
commit 5653732d53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ const getModulesIdent = set => {
};
/**
* @template {T}
* @template T
* @param {Set<T>} set the set to convert to array
* @returns {Array<T>} the array returned from Array.from(set)
*/

View File

@ -18,7 +18,7 @@ const compareLocations = require("./compareLocations");
let debugId = 5000;
/**
* @template {T}
* @template T
* @param {Set<T>} set set to convert to array.
* @returns {T[]} the array format of existing set
*/