Skip to content

Commit b1f6737

Browse files
committed
docs: fixed typos in jsdocs (#4626)
1 parent d280344 commit b1f6737

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src.ts/providers/abstract-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ export class AbstractProvider implements Provider {
818818
}
819819

820820
/**
821-
* Returns or resovles to a transaction for %%request%%, resolving
821+
* Returns or resolves to a transaction for %%request%%, resolving
822822
* any ENS names or [[Addressable]] and returning if already a valid
823823
* transaction.
824824
*/

src.ts/providers/ens-resolver.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,14 @@ export abstract class MulticoinProviderPlugin implements AbstractProviderPlugin
114114
}
115115

116116
/**
117-
* Resovles to the encoded %%address%% for %%coinType%%.
117+
* Resolves to the encoded %%address%% for %%coinType%%.
118118
*/
119119
async encodeAddress(coinType: number, address: string): Promise<string> {
120120
throw new Error("unsupported coin");
121121
}
122122

123123
/**
124-
* Resovles to the decoded %%data%% for %%coinType%%.
124+
* Resolves to the decoded %%data%% for %%coinType%%.
125125
*/
126126
async decodeAddress(coinType: number, data: BytesLike): Promise<string> {
127127
throw new Error("unsupported coin");

0 commit comments

Comments
 (0)