summaryrefslogtreecommitdiff
path: root/core/README.md
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-04-09 13:11:25 -0400
committerGitHub <noreply@github.com>2019-04-09 13:11:25 -0400
commitd2579f45641b437974829c87d58c2a362ef66919 (patch)
treeb1340c30daade103f6be9db1de6d7d4fad199a9c /core/README.md
parente43da28b28c8b1ed97da603ec0e6bf91fbb67798 (diff)
core: Rename Behavior to Dispatch (#2082)
And rename IsolateState to ThreadSafeState. Also make ThreadSafeState directly implement Dispatch. This is simpler.
Diffstat (limited to 'core/README.md')
-rw-r--r--core/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/README.md b/core/README.md
index de7bfc3e3..516606961 100644
--- a/core/README.md
+++ b/core/README.md
@@ -4,7 +4,7 @@ This Rust crate contains the essential V8 bindings for Deno's command-line
interface (Deno CLI). The main abstraction here is the Isolate which proivdes a
way to execute JavaScript. The Isolate is modeled as a
`Future<Item=(), Error=JSError>` which completes once all of its ops have
-completed. The user must define what an Op is by implementing the `Behavior`
+completed. The user must define what an Op is by implementing the `Dispatch`
trait, and by doing so define any "built-in" functionality that would be
provided by the VM. Ops are triggered by `Deno.core.dispatch()`.