diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/README.md b/core/README.md index a5c20f79e..857bd672b 100644 --- a/core/README.md +++ b/core/README.md @@ -1,7 +1,7 @@ # Deno Core 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 +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 completed. The user must define what an Op is by implementing the `Dispatch` |