diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-02-08 09:42:17 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-07 23:42:17 +0100 |
commit | 96c07e90ca9417c2941995c6019d6f70541317ec (patch) | |
tree | 487b4be54f0442b16029493abad65a2d4db3b5a5 /cli/tsc/dts/lib.deno.ns.d.ts | |
parent | ffbb1bad037528863fcc191f0eaf374211252713 (diff) |
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`.
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 8 |
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 f855a0c0e..c2061e287 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<void>; @@ -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<void>; @@ -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; |