From 96c07e90ca9417c2941995c6019d6f70541317ec Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 8 Feb 2024 09:42:17 +1100 Subject: [PATCH] docs: correct JSDoc `@category` for `Deno.fsync[Sync]()` and `Deno.fdatasync[Sync]()` (#22177) As other APIs with the "f" prefix denote being part of the "File System" `@category`. --- cli/tsc/dts/lib.deno.ns.d.ts | 8 ++++---- 1 file 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 f855a0c0e9..c2061e2876 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -2196,7 +2196,7 @@ declare namespace Deno { * console.log(await Deno.readTextFile("my_file.txt")); // H * ``` * - * @category I/O + * @category File System */ export function fsync(rid: number): Promise; @@ -2215,7 +2215,7 @@ declare namespace Deno { * console.log(Deno.readTextFileSync("my_file.txt")); // H * ``` * - * @category I/O + * @category File System */ export function fsyncSync(rid: number): void; @@ -2231,7 +2231,7 @@ declare namespace Deno { * console.log(await Deno.readTextFile("my_file.txt")); // Hello World * ``` * - * @category I/O + * @category File System */ export function fdatasync(rid: number): Promise; @@ -2249,7 +2249,7 @@ declare namespace Deno { * console.log(Deno.readTextFileSync("my_file.txt")); // Hello World * ``` * - * @category I/O + * @category File System */ export function fdatasyncSync(rid: number): void;