Skip to content

Fix typos in comments and test descriptions #7323

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/thirdweb/src/bridge/Status.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe.runIf(process.env.TW_SECRET_KEY)("Bridge.status", () => {
`);
});

it("should handle successfull status with chain", async () => {
it("should handle successful status with chain", async () => {
const result = await status({
transactionHash:
"0x7bedc4693e899fe81a22dac11301e77a12a6e772834bba5b698baf3ebcf86f7a",
Expand Down
4 changes: 2 additions & 2 deletions packages/thirdweb/src/storage/upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ type UploadReturnType<TFiles extends UploadableFile[]> = TFiles extends {
export async function upload<const TFiles extends UploadableFile[]>(
options: UploadOptions<TFiles>,
): Promise<UploadReturnType<TFiles>> {
// deal with the differnt file types
// deal with the different file types

// if there are no files, return an empty array immediately
if (options.files.length === 0) {
Expand Down Expand Up @@ -112,7 +112,7 @@ export async function upload<const TFiles extends UploadableFile[]>(
});
}

// end deal with the differnt file types
// end deal with the different file types
const form_ = new FormData();

const { fileNames, form } = buildFormData(form_, uris, options);
Expand Down