Skip to content

Commit fad174f

Browse files
authored
fix typo in file fetch() error message (#682)
1 parent 403ce43 commit fad174f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const flash = async (
104104
const resp = await fetch(url);
105105
if (!resp.ok) {
106106
throw new Error(
107-
`Downlading firmware ${part.path} failed: ${resp.status}`,
107+
`Downloading firmware ${part.path} failed: ${resp.status}`,
108108
);
109109
}
110110

0 commit comments

Comments
 (0)