From 4f2d1e1c7bc1d45553459110de6f1c0cd77c56aa Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Sun, 26 Feb 2023 18:25:02 -0500 Subject: [PATCH] docs: fixed typos in docs --- src.ts/abi/abi-coder.ts | 2 +- src.ts/address/address.ts | 2 +- src.ts/providers/signer.ts | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src.ts/abi/abi-coder.ts b/src.ts/abi/abi-coder.ts index 78ed28267..352b95f42 100644 --- a/src.ts/abi/abi-coder.ts +++ b/src.ts/abi/abi-coder.ts @@ -1,6 +1,6 @@ /** * When sending values to or receiving values from a [[Contract]], the - * data is generally encoded using the [ABI standard](solc-abi-standard). + * data is generally encoded using the [ABI standard](link-solc-abi). * * The AbiCoder provides a utility to encode values to ABI data and * decode values from ABI data. diff --git a/src.ts/address/address.ts b/src.ts/address/address.ts index 08af8da7a..9398027b6 100644 --- a/src.ts/address/address.ts +++ b/src.ts/address/address.ts @@ -150,7 +150,7 @@ export function getAddress(address: string): string { /** * The [ICAP Address format](link-icap) format is an early checksum * format which attempts to be compatible with the banking - * industry [IBAN format](link-wiki-iban] for bank accounts. + * industry [IBAN format](link-wiki-iban) for bank accounts. * * It is no longer common or a recommended format. * diff --git a/src.ts/providers/signer.ts b/src.ts/providers/signer.ts index 7444434be..c38185c9e 100644 --- a/src.ts/providers/signer.ts +++ b/src.ts/providers/signer.ts @@ -32,7 +32,7 @@ export interface Signer extends Addressable, ContractRunner, NameResolver { // State /** - * Get the [[Address]] of the Signer. + * Get the address of the Signer. */ getAddress(): Promise; @@ -109,7 +109,7 @@ export interface Signer extends Addressable, ContractRunner, NameResolver { call(tx: TransactionRequest): Promise; /** - * Resolves an [[Address]] or ENS Name to an [[Address]]. + * Resolves an ENS Name to an address. */ resolveName(name: string): Promise; @@ -131,7 +131,7 @@ export interface Signer extends Addressable, ContractRunner, NameResolver { sendTransaction(tx: TransactionRequest): Promise; /** - * Signers an [[EIP-191]] prefixed personal message. + * Signers an [[link-eip-191]] prefixed personal message. * * If the %%message%% is a string, it is signed as UTF-8 encoded bytes. It is **not** * interpretted as a [[BytesLike]]; so the string ``"0x1234"`` is signed as six @@ -143,7 +143,7 @@ export interface Signer extends Addressable, ContractRunner, NameResolver { signMessage(message: string | Uint8Array): Promise; /** - * Signs the [[EIP-712]] typed data. + * Signs the [[link-eip-712]] typed data. */ signTypedData(domain: TypedDataDomain, types: Record>, value: Record): Promise; }