diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-12-20 09:49:09 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-12-20 09:49:09 +0100 |
commit | 06506dcaf1fa535296f29c248c2babd738bc69e5 (patch) | |
tree | 49a5fe1a15fc677cffb0318bed7e0afd68be5c31 /examples | |
parent | a4b800c239dc993f109941b99694acfb7847264f (diff) | |
download | juicebox-asm-06506dcaf1fa535296f29c248c2babd738bc69e5.tar.gz juicebox-asm-06506dcaf1fa535296f29c248c2babd738bc69e5.zip |
tiny_vm: fix typos in doc comment
Diffstat (limited to 'examples')
-rw-r--r-- | examples/tiny_vm.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/tiny_vm.rs b/examples/tiny_vm.rs index 992b684..d203bde 100644 --- a/examples/tiny_vm.rs +++ b/examples/tiny_vm.rs @@ -1,9 +1,9 @@ //! TinyVm example. //! -//! This example introduces as simple 16 bit virtual machine the [`TinyVm`]. The VM consits of -//! three registers defined in [`TinyReg`], a separate _data_ and _insutrction_ memory and a small +//! This example introduces a simple 16 bit virtual machine the [`TinyVm`]. The VM consists of +//! three registers defined in [`TinyReg`], a separate _data_ and _instruction_ memory and a small //! set of instructions [`TinyInsn`], sufficient to implement a guest program to compute the -//! fiibonacci sequence. +//! Fibonacci sequence. //! //! The `TinyVm` implements a simple _just-in-time (JIT)_ compiler to demonstrate the //! [`juicebox_asm`] crate. Additionally, it implements a reference _interpreter_. |