Skip to content

Commit 1b32365

Browse files
committed
docs: fixed typo (#4831)
1 parent a0fb463 commit 1b32365

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src.ts/contract/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import type { ContractTransactionResponse } from "./wrappers.js";
2626
*
2727
* [[DeferredTopicFilter]] - A filter created by calling a [[ContractEvent]]
2828
* with parameters, which will create a filter for a specific event
29-
* signautre and dereference each parameter when calling the listener.
29+
* signature and dereference each parameter when calling the listener.
3030
*/
3131
export type ContractEventName = string | ContractEvent | TopicFilter | DeferredTopicFilter;
3232

src.ts/crypto/signature.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class Signature {
6666
#networkV: null | bigint;
6767

6868
/**
69-
* The ``r`` value for a signautre.
69+
* The ``r`` value for a signature.
7070
*
7171
* This represents the ``x`` coordinate of a "reference" or
7272
* challenge point, from which the ``y`` can be computed.

src.ts/crypto/signing-key.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export class SigningKey {
172172
secpSig = secpSig.addRecoveryBit(sig.yParity);
173173

174174
const pubKey = secpSig.recoverPublicKey(getBytesCopy(digest));
175-
assertArgument(pubKey != null, "invalid signautre for digest", "signature", signature);
175+
assertArgument(pubKey != null, "invalid signature for digest", "signature", signature);
176176

177177
return "0x" + pubKey.toHex(false);
178178
}

0 commit comments

Comments
 (0)