summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-01-24 15:08:59 +1100
committerGitHub <noreply@github.com>2024-01-24 09:38:59 +0530
commit4c5ce9088328b620847f22b1161a41261675f8c9 (patch)
tree46c3a29b6cb3c0d6a5d5dd74d7da5163789d3258 /cli/tsc/dts/lib.deno.ns.d.ts
parent5a4d69354c3c240a0ea42804b712942f1c30e744 (diff)
chore: update `Deno.{fsync,fsyncSync}()` deprecation notices (#22071)
To align with other deprecations.
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts
index 2b82fa152..8759306df 100644
--- a/cli/tsc/dts/lib.deno.ns.d.ts
+++ b/cli/tsc/dts/lib.deno.ns.d.ts
@@ -2168,8 +2168,8 @@ declare namespace Deno {
* console.log(await Deno.readTextFile("my_file.txt")); // H
* ```
*
- * @deprecated Use `file.sync()` instead. {@linkcode Deno.fsync} will be
- * removed in v2.0.0.
+ * @deprecated Use {@linkcode Deno.FsFile.sync} instead.
+ * {@linkcode Deno.fsync} will be removed in Deno 2.0.
*
* @category I/O
*/
@@ -2190,8 +2190,8 @@ declare namespace Deno {
* console.log(Deno.readTextFileSync("my_file.txt")); // H
* ```
*
- * @deprecated Use `file.syncSync()` instead. {@linkcode Deno.fsyncSync} will
- * be removed in v2.0.0.
+ * @deprecated Use {@linkcode Deno.FsFile.syncSync} instead.
+ * {@linkcode Deno.fsyncSync} will be removed in Deno 2.0.
*
* @category I/O
*/