File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export class RestClient {
24
24
* Perform GET
25
25
* T is the expected type of the json object returned by this request
26
26
* @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
28
28
*/
29
29
public static async get < T > ( url : string , parameters ?: Map < string , string > ) : Promise < TspClientResponse < T > > {
30
30
let getUrl = url ;
@@ -59,7 +59,7 @@ export class RestClient {
59
59
* Perform DELETE
60
60
* T is the expected type of the json object returned by this request
61
61
* @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
63
63
*/
64
64
public static async delete < T > ( url : string , parameters ?: Map < string , string > ) : Promise < TspClientResponse < T > > {
65
65
let deleteUrl = url ;
You can’t perform that action at this time.
0 commit comments