summaryrefslogtreecommitdiff
path: root/core/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'core/README.md')
-rw-r--r--core/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/README.md b/core/README.md
index 94fe29de9..f6b429bb8 100644
--- a/core/README.md
+++ b/core/README.md
@@ -8,9 +8,9 @@ The main dependency of this crate is
bindings.
This Rust crate contains the essential V8 bindings for Deno's command-line
-interface (Deno CLI). The main abstraction here is the Isolate which provides a
-way to execute JavaScript. The Isolate is modeled as a
-`Future<Item=(), Error=JSError>` which completes once all of its ops have
+interface (Deno CLI). The main abstraction here is the JsRuntime which provides
+a way to execute JavaScript. The JsRuntime is modeled as a
+`Future<Item=(), Error=JsError>` which completes once all of its ops have
completed.
In order to bind Rust functions into JavaScript, use the `Deno.core.dispatch()`