mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 07:44:48 -05:00
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`.
This commit is contained in:
parent
ffbb1bad03
commit
96c07e90ca
1 changed files with 4 additions and 4 deletions
8
cli/tsc/dts/lib.deno.ns.d.ts
vendored
8
cli/tsc/dts/lib.deno.ns.d.ts
vendored
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue