From c95300c3146cd541854fb8f6c4f4930dfb5b8eaf Mon Sep 17 00:00:00 2001 From: wangjingcun Date: Fri, 8 Nov 2024 23:28:43 +0800 Subject: [PATCH] chore: fix some typos in comments (#620) Signed-off-by: wangjingcun --- apps/docs/src/app/docs/installation/page.md | 2 +- .../test/storages/FileSystemStorage.test.ts | 2 +- packages/optimism-decoder/src/download.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/docs/src/app/docs/installation/page.md b/apps/docs/src/app/docs/installation/page.md index 46f8fd1c8..60f295898 100644 --- a/apps/docs/src/app/docs/installation/page.md +++ b/apps/docs/src/app/docs/installation/page.md @@ -6,7 +6,7 @@ nextjs: description: How to run your own instance of Blobscan --- -Blobscan is open source and you can run your own instance either locally or publically exposed on the Internet. +Blobscan is open source and you can run your own instance either locally or publicly exposed on the Internet. --- diff --git a/packages/blob-storage-manager/test/storages/FileSystemStorage.test.ts b/packages/blob-storage-manager/test/storages/FileSystemStorage.test.ts index 0d606e6b8..e21292d98 100644 --- a/packages/blob-storage-manager/test/storages/FileSystemStorage.test.ts +++ b/packages/blob-storage-manager/test/storages/FileSystemStorage.test.ts @@ -48,7 +48,7 @@ describe("FileSystemStorage", () => { }); expect(storage_, "Storage should exist").toBeDefined(); - expect(storage_.chainId, "Chain ID mistmatch").toEqual(env.CHAIN_ID); + expect(storage_.chainId, "Chain ID mismatch").toEqual(env.CHAIN_ID); expect(storage_.blobDirPath, "Blob directory path mismatch").toEqual( env.FILE_SYSTEM_STORAGE_PATH ); diff --git a/packages/optimism-decoder/src/download.ts b/packages/optimism-decoder/src/download.ts index b609d9f40..e75866449 100644 --- a/packages/optimism-decoder/src/download.ts +++ b/packages/optimism-decoder/src/download.ts @@ -41,7 +41,7 @@ async function main(transactionIds: string[]) { console.log(`Skipped: ${txId}`); } else { console.log(jsonData); - const message = `Sucesss: ${txId}`; + const message = `Success: ${txId}`; console.log(message); logInfo(message); }