Skip to content

Commit 1df52e6

Browse files
authored
typings: fix invalid JSDoc declarations
PR-URL: #52659 Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
1 parent ac9aa37 commit 1df52e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/modules/esm/loader.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ let defaultResolve, defaultLoad, defaultLoadSync, importMetaInitializer;
4949

5050
/**
5151
* Lazy loads the module_map module and returns a new instance of ResolveCache.
52-
* @returns {import('./module_map.js').ResolveCache')}
52+
* @returns {import('./module_map.js').ResolveCache}
5353
*/
5454
function newResolveCache() {
5555
const { ResolveCache } = require('internal/modules/esm/module_map');
@@ -58,7 +58,7 @@ function newResolveCache() {
5858

5959
/**
6060
* Generate a load cache (to store the final result of a load-chain for a particular module).
61-
* @returns {import('./module_map.js').LoadCache')}
61+
* @returns {import('./module_map.js').LoadCache}
6262
*/
6363
function newLoadCache() {
6464
const { LoadCache } = require('internal/modules/esm/module_map');

0 commit comments

Comments
 (0)