Skip to content

Commit bd2bd35

Browse files
committed
fix lint error
1 parent 6537a51 commit bd2bd35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/functions/functions-api-client-internal.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export class FunctionsApiClient {
105105
});
106106
}
107107

108-
private getUrl(resourceName: utils.ParsedResource, UrlFormat: string): Promise<string> {
108+
private getUrl(resourceName: utils.ParsedResource, urlFormat: string): Promise<string> {
109109
let { locationId } = resourceName;
110110
const { projectId, resourceId } = resourceName;
111111
if (typeof locationId === 'undefined' || !validator.isNonEmptyString(locationId)) {
@@ -127,7 +127,7 @@ export class FunctionsApiClient {
127127
// Formats a string of form 'project/{projectId}/{api}' and replaces
128128
// with corresponding arguments {projectId: '1234', api: 'resource'}
129129
// and returns output: 'project/1234/resource'.
130-
return utils.formatString(UrlFormat, urlParams);
130+
return utils.formatString(urlFormat, urlParams);
131131
});
132132
}
133133

0 commit comments

Comments
 (0)