Skip to content

Commit

Permalink
fix: Resolve Method typo of REST API (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechQuery committed Mar 23, 2024
1 parent 588fb40 commit 7116d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gopeed-rest/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Client {
* @param request - The request to create a new download task
* @returns
*/
public async resole(request: Request): Promise<ResolveResult> {
public async resolve(request: Request): Promise<ResolveResult> {
return this.doRequest<ResolveResult>('POST', '/api/v1/resolve', {
data: request,
});
Expand Down

0 comments on commit 7116d79

Please sign in to comment.