diff options
| author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-04-12 21:55:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-12 15:55:05 -0400 |
| commit | 46b1c653c0c433932908b7610f60b409af134c76 (patch) | |
| tree | 00d8b59c8c4e9b90538d548ebd828d2b3f94d4fd /core/ops.rs | |
| parent | a20504642d083172f297543f9788b128e9c2e0bc (diff) | |
refactor(deno): remove concept of bin & json ops (#10145)
Diffstat (limited to 'core/ops.rs')
| -rw-r--r-- | core/ops.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ops.rs b/core/ops.rs index 53aec4ae4..3cc24c8cc 100644 --- a/core/ops.rs +++ b/core/ops.rs @@ -188,7 +188,7 @@ impl Default for OpTable { /// Return map of resources with id as key /// and string representation as value. /// -/// This op must be wrapped in `json_op_sync`. +/// This op must be wrapped in `op_sync`. pub fn op_resources( state: &mut OpState, _args: (), @@ -204,7 +204,7 @@ pub fn op_resources( /// Remove a resource from the resource table. /// -/// This op must be wrapped in `json_op_sync`. +/// This op must be wrapped in `op_sync`. pub fn op_close( state: &mut OpState, rid: Option<ResourceId>, |
