summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/tools/test/fmt.rs4
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts12
2 files changed, 5 insertions, 11 deletions
diff --git a/cli/tools/test/fmt.rs b/cli/tools/test/fmt.rs
index d26d083b4..966b488b1 100644
--- a/cli/tools/test/fmt.rs
+++ b/cli/tools/test/fmt.rs
@@ -308,12 +308,10 @@ pub const OP_DETAILS: phf::Map<&'static str, [&'static str; 2]> = phf_map! {
"op_fs_chown_async" => ["change the owner of a file", "awaiting the result of a `Deno.chown` call"],
"op_fs_copy_file_async" => ["copy a file", "awaiting the result of a `Deno.copyFile` call"],
"op_fs_events_poll" => ["get the next file system event", "breaking out of a for await loop looping over `Deno.FsEvents`"],
- "op_fs_fdatasync_async" => ["flush pending data operations for a file to disk", "awaiting the result of a `Deno.fdatasync` call"],
- "op_fs_fdatasync_async_unstable" => ["flush pending data operations for a file to disk", "awaiting the result of a `Deno.FsFile.syncData` call"],
+ "op_fs_fdatasync_async" => ["flush pending data operations for a file to disk", "awaiting the result of a `Deno.fdatasync` or `Deno.FsFile.syncData` call"],
"op_fs_file_stat_async" => ["get file metadata", "awaiting the result of a `Deno.fstat` or `Deno.FsFile.stat` call"],
"op_fs_flock_async" => ["lock a file", "awaiting the result of a `Deno.flock` or `Deno.FsFile.lock` call"],
"op_fs_fsync_async" => ["flush pending data operations for a file to disk", "awaiting the result of a `Deno.fsync` or `Deno.FsFile.sync` call"],
- "op_fs_fsync_async_unstable" => ["flush pending data operations for a file to disk", "awaiting the result of a `Deno.FsFile.sync` call"],
"op_fs_ftruncate_async" => ["truncate a file", "awaiting the result of a `Deno.ftruncate` or `Deno.FsFile.truncate` call"],
"op_fs_funlock_async" => ["unlock a file", "awaiting the result of a `Deno.funlock` or `Deno.FsFile.unlock` call"],
"op_fs_futime_async" => ["change file timestamps", "awaiting the result of a `Deno.futime` or `Deno.FsFile.utime` call"],
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts
index 09c669c28..c6b9df222 100644
--- a/cli/tsc/dts/lib.deno.ns.d.ts
+++ b/cli/tsc/dts/lib.deno.ns.d.ts
@@ -2563,8 +2563,7 @@ declare namespace Deno {
* ```
*/
statSync(): FileInfo;
- /** **UNSTABLE**: New API, yet to be vetted.
- *
+ /**
* Flushes any pending data and metadata operations of the given file
* stream to disk.
*
@@ -2582,8 +2581,7 @@ declare namespace Deno {
* @category I/O
*/
sync(): Promise<void>;
- /** **UNSTABLE**: New API, yet to be vetted.
- *
+ /**
* Synchronously flushes any pending data and metadata operations of the given
* file stream to disk.
*
@@ -2601,8 +2599,7 @@ declare namespace Deno {
* @category I/O
*/
syncSync(): void;
- /** **UNSTABLE**: New API, yet to be vetted.
- *
+ /**
* Flushes any pending data operations of the given file stream to disk.
* ```ts
* using file = await Deno.open(
@@ -2617,8 +2614,7 @@ declare namespace Deno {
* @category I/O
*/
syncData(): Promise<void>;
- /** **UNSTABLE**: New API, yet to be vetted.
- *
+ /**
* Synchronously flushes any pending data operations of the given file stream
* to disk.
*