Skip to content

Commit 7e58fa8

Browse files
marco-millerMatthewKhouzam
authored andcommitted
RestClient: Fix minor use{d} verb tense typo(s)
Signed-off-by: Marco Miller <[email protected]>
1 parent f02a98b commit 7e58fa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/protocol/rest-client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class RestClient {
2424
* Perform GET
2525
* T is the expected type of the json object returned by this request
2626
* @param url URL to query without query parameters
27-
* @param parameters Query parameters. Map keys and values are use to build the final URL
27+
* @param parameters Query parameters. Map keys and values are used to build the final URL
2828
*/
2929
public static async get<T>(url: string, parameters?: Map<string, string>): Promise<TspClientResponse<T>> {
3030
let getUrl = url;
@@ -59,7 +59,7 @@ export class RestClient {
5959
* Perform DELETE
6060
* T is the expected type of the json object returned by this request
6161
* @param url URL to query without query parameters
62-
* @param parameters Query parameters. Map keys and values are use to build the final URL
62+
* @param parameters Query parameters. Map keys and values are used to build the final URL
6363
*/
6464
public static async delete<T>(url: string, parameters?: Map<string, string>): Promise<TspClientResponse<T>> {
6565
let deleteUrl = url;

0 commit comments

Comments
 (0)