Skip to content

Commit

Permalink
chore: fix some typos in comments (#620)
Browse files Browse the repository at this point in the history
Signed-off-by: wangjingcun <[email protected]>
  • Loading branch information
wangjingcun authored Nov 8, 2024
1 parent 05bdc1d commit c95300c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/docs/src/app/docs/installation/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
Expand Down
2 changes: 1 addition & 1 deletion packages/optimism-decoder/src/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit c95300c

Please sign in to comment.