Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
jespertheend committed May 2, 2024
1 parent 7af44a7 commit b41e1c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ export class Uint8ArrayWriter extends Writer<Uint8Array> { }
* import {resolve} from "https://deno.land/std/path/mod.ts";
* import {ensureDir, ensureFile} from "https://deno.land/std/fs/mod.ts";
*
* for await (const entry of (await fetch(urlToZippedFile)).body.pipeThrough(new ZipReaderStream()))) {
* for await (const entry of (await fetch(urlToZippedFile)).body.pipeThrough(new ZipReaderStream())) {
* const fullPath = resolve(destination, entry.filename);
* if (entry.directory) {
* await ensureDir(fullPath);
Expand Down

0 comments on commit b41e1c2

Please sign in to comment.