summaryrefslogtreecommitdiff
path: root/ext/io/12_io.js
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-04-11 07:26:35 +1000
committerGitHub <noreply@github.com>2024-04-10 17:26:35 -0400
commitc6f1107e9c8835389479f4f2d80d3539d23df41e (patch)
tree4fdf2e9c02d23364cae0aab9021d1655274d1d5c /ext/io/12_io.js
parent7c5745a204637f12e53e62821c6e7e91fee21fbe (diff)
chore: update references to `deno_std` to use JSR (#23239)
There are more uses of `deno.land/std` in the codebase, but for URL parsing purposes rather than network calls or documentation.
Diffstat (limited to 'ext/io/12_io.js')
-rw-r--r--ext/io/12_io.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/io/12_io.js b/ext/io/12_io.js
index f73cb57a6..c43117cef 100644
--- a/ext/io/12_io.js
+++ b/ext/io/12_io.js
@@ -40,7 +40,7 @@ async function copy(
internals.warnOnDeprecatedApi(
"Deno.copy()",
new Error().stack,
- "Use `copy()` from `https://deno.land/std/io/copy.ts` instead.",
+ "Use `copy()` from `https://jsr.io/@std/io/doc/copy/~` instead.",
);
let n = 0;
const bufSize = options?.bufSize ?? DEFAULT_BUFFER_SIZE;