Skip to content

Commit 305f738

Browse files
authored
Fix typos in comments and test descriptions (#7323)
Signed-off-by: leopardracer <[email protected]>
1 parent a1c875c commit 305f738

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/thirdweb/src/bridge/Status.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe.runIf(process.env.TW_SECRET_KEY)("Bridge.status", () => {
4141
`);
4242
});
4343

44-
it("should handle successfull status with chain", async () => {
44+
it("should handle successful status with chain", async () => {
4545
const result = await status({
4646
transactionHash:
4747
"0x7bedc4693e899fe81a22dac11301e77a12a6e772834bba5b698baf3ebcf86f7a",

packages/thirdweb/src/storage/upload.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ type UploadReturnType<TFiles extends UploadableFile[]> = TFiles extends {
6767
export async function upload<const TFiles extends UploadableFile[]>(
6868
options: UploadOptions<TFiles>,
6969
): Promise<UploadReturnType<TFiles>> {
70-
// deal with the differnt file types
70+
// deal with the different file types
7171

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

115-
// end deal with the differnt file types
115+
// end deal with the different file types
116116
const form_ = new FormData();
117117

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

0 commit comments

Comments
 (0)