diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-09 21:09:57 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 21:09:57 +1000 |
commit | 39f2704bd73971867301a7d424d9f2464916785d (patch) | |
tree | 9078c96685422de9e060b2ed1b5ac4f2359df9be /ext/fs/ops.rs | |
parent | ce1d668929a91da2dc204f6bcc53afd5173c0a33 (diff) |
BREAKING(fs): remove `Deno.fdatasync[Sync]()` (#25520)
Diffstat (limited to 'ext/fs/ops.rs')
-rw-r--r-- | ext/fs/ops.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fs/ops.rs b/ext/fs/ops.rs index 0ac4f5016..c9eec94fa 100644 --- a/ext/fs/ops.rs +++ b/ext/fs/ops.rs @@ -1430,7 +1430,7 @@ pub async fn op_fs_seek_async( } #[op2(fast)] -pub fn op_fs_fdatasync_sync( +pub fn op_fs_file_sync_data_sync( state: &mut OpState, #[smi] rid: ResourceId, ) -> Result<(), AnyError> { @@ -1440,7 +1440,7 @@ pub fn op_fs_fdatasync_sync( } #[op2(async)] -pub async fn op_fs_fdatasync_async( +pub async fn op_fs_file_sync_data_async( state: Rc<RefCell<OpState>>, #[smi] rid: ResourceId, ) -> Result<(), AnyError> { |