Skip to content

Commit 65d17e4

Browse files
authored
rename parameter name in the function JSDoc from 'mapOrMaps' to 'mdMapOrMaps'
1 parent 25d8f6e commit 65d17e4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/core/shared/metadata.utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class Metadata {
7777
/**
7878
* Gets the first matching MetadataValue object in the map(s), or `undefined`.
7979
*
80-
* @param {MetadataMapInterface|MetadataMapInterface[]} mapOrMaps The source map(s).
80+
* @param {MetadataMapInterface|MetadataMapInterface[]} mdMapOrMaps The source map(s).
8181
* @param {string|string[]} keyOrKeys The metadata key(s) in scope. Wildcards are supported; see above.
8282
* @param {MetadataValueFilter} filter The value filter to use. If unspecified, no filtering will be done.
8383
* @returns {MetadataValue} the first matching value, or `undefined`.
@@ -98,7 +98,7 @@ export class Metadata {
9898
/**
9999
* Like [[Metadata.first]], but only returns a string value, or `undefined`.
100100
*
101-
* @param {MetadataMapInterface|MetadataMapInterface[]} mapOrMaps The source map(s).
101+
* @param {MetadataMapInterface|MetadataMapInterface[]} mdMapOrMaps The source map(s).
102102
* @param {string|string[]} keyOrKeys The metadata key(s) in scope. Wildcards are supported; see above.
103103
* @param {MetadataValueFilter} filter The value filter to use. If unspecified, no filtering will be done.
104104
* @returns {string} the first matching string value, or `undefined`.
@@ -112,7 +112,7 @@ export class Metadata {
112112
/**
113113
* Checks for a matching metadata value in the given map(s).
114114
*
115-
* @param {MetadataMapInterface|MetadataMapInterface[]} mapOrMaps The source map(s).
115+
* @param {MetadataMapInterface|MetadataMapInterface[]} mdMapOrMaps The source map(s).
116116
* @param {string|string[]} keyOrKeys The metadata key(s) in scope. Wildcards are supported; see above.
117117
* @param {MetadataValueFilter} filter The value filter to use. If unspecified, no filtering will be done.
118118
* @returns {boolean} whether a match is found.

0 commit comments

Comments
 (0)