Skip to content

Commit e276f34

Browse files
committed
🐛 fix doc test
Since the version is not specified, the latest `[email protected]` is referenced. However, since this version supports JSR, the following error occurs in doctest. ``` error: Relative import path "@std/bytes" not prefixed with / or ./ or ../ at https://deno.land/x/[email protected]/read_all.ts:1:24 ```
1 parent 6729a74 commit e276f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ type Session = {
2121
*
2222
* @example
2323
* ```ts
24-
* import { channel } from "https://deno.land/x/streamtools/mod.ts";
24+
* import { channel } from "https://deno.land/x/streamtools@v0.5.0/mod.ts";
2525
* import { Session, Client } from "./mod.ts";
2626
*
2727
* const input = channel<Uint8Array>();

0 commit comments

Comments
 (0)