From 8c8e113879a0d369d14040533373b6c3add9ffab Mon Sep 17 00:00:00 2001 From: Ian Macalinao Date: Tue, 29 Nov 2022 01:15:58 -0600 Subject: [PATCH] chore: fix typo in PublicKey.unique (#27884) --- web3.js/src/publickey.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3.js/src/publickey.ts b/web3.js/src/publickey.ts index 5ea9a9e1d7..583c982873 100644 --- a/web3.js/src/publickey.ts +++ b/web3.js/src/publickey.ts @@ -76,7 +76,7 @@ export class PublicKey extends Struct { } /** - * Returns a unique PublicKey for tests and benchmarks using acounter + * Returns a unique PublicKey for tests and benchmarks using a counter */ static unique(): PublicKey { const key = new PublicKey(uniquePublicKeyCounter);