Skip to content

Commit e320ca1

Browse files
committed
chore: linting
Signed-off-by: Vincent Biret <vibiret@microsoft.com>
1 parent da0791e commit e320ca1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/http/fetch/src/middlewares/customFetchHandler.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class CustomFetchHandler implements Middleware {
2727
constructor(private readonly customFetch: (input: string, init: RequestInit) => Promise<Response>) {}
2828

2929
/**
30-
* @inheritdoc
30+
* @inheritdoc
3131
*/
3232
public async execute(url: string, requestInit: RequestInit): Promise<Response> {
3333
return await this.customFetch(url, requestInit);

packages/http/fetch/src/middlewares/middleware.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export interface Middleware {
1212
next: Middleware | undefined;
1313

1414
/**
15-
* @public
16-
* @async
15+
* @public
16+
* @async
1717
* Main method of the middleware.
1818
* @param requestInit The Fetch RequestInit object.
1919
* @param url The URL of the request.

0 commit comments

Comments
 (0)