Skip to content

Commit

Permalink
RestClient: Fix minor use{d} verb tense typo(s)
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Miller <[email protected]>
  • Loading branch information
marco-miller authored and MatthewKhouzam committed Sep 10, 2021
1 parent f02a98b commit 7e58fa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/protocol/rest-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class RestClient {
* Perform GET
* T is the expected type of the json object returned by this request
* @param url URL to query without query parameters
* @param parameters Query parameters. Map keys and values are use to build the final URL
* @param parameters Query parameters. Map keys and values are used to build the final URL
*/
public static async get<T>(url: string, parameters?: Map<string, string>): Promise<TspClientResponse<T>> {
let getUrl = url;
Expand Down Expand Up @@ -59,7 +59,7 @@ export class RestClient {
* Perform DELETE
* T is the expected type of the json object returned by this request
* @param url URL to query without query parameters
* @param parameters Query parameters. Map keys and values are use to build the final URL
* @param parameters Query parameters. Map keys and values are used to build the final URL
*/
public static async delete<T>(url: string, parameters?: Map<string, string>): Promise<TspClientResponse<T>> {
let deleteUrl = url;
Expand Down

0 comments on commit 7e58fa8

Please sign in to comment.